This commit is contained in:
lopar
2018-03-03 20:11:48 +02:00
parent b642ba5858
commit 5111aae3e2
3 changed files with 30 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
class n
{
private static $_instance = null;
private function __clone() {}
private function __construct() {}
public static function show($userId)
{
if (!self::$_instance) {
self::$_instance = battles\nick::search($userId);
}
return self::$_instance;
}
}