Remove unused

This commit is contained in:
Igor Barkov (iwork)
2020-07-03 16:06:46 +03:00
parent 66375be9b7
commit d186330f71
3 changed files with 1 additions and 37 deletions
-29
View File
@@ -1,29 +0,0 @@
<?php
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
/* @DEPRECATED */
class n
{
private static $_instance = null;
private function __clone() {}
private function __construct() {}
/**
* @param $userId
* @return null|string
*/
public static function show($userId)
{
if (!self::$_instance) {
self::$_instance = nick::search($userId);
}
return self::$_instance;
}
}