Browse Source

Code format, PHPDoc

master
Anton Terekhov 13 years ago
parent
commit
c7dcd33512
  1. 12
      logger/Logger.php

12
logger/Logger.php

@ -19,17 +19,24 @@ abstract class Logger
*/ */
protected $pid = ''; protected $pid = '';
protected function __construct() {}
protected function __construct()
{
}
/**
* @static
* @return Logger
*/
public static function getInstance() public static function getInstance()
{ {
if(static::$_instance === null) {
if (static::$_instance === null) {
//$class = get_called_class(); //$class = get_called_class();
$class = Config::get('Logger')->logger; $class = Config::get('Logger')->logger;
static::$_instance = new $class(); static::$_instance = new $class();
} }
return static::$_instance; return static::$_instance;
} }
/** /**
* Вывод лога * Вывод лога
* @param string $message Сообщение * @param string $message Сообщение
@ -53,5 +60,4 @@ abstract class Logger
} }
abstract protected function concreteLog($message); abstract protected function concreteLog($message);
} }
Loading…
Cancel
Save