示例#1
0
文件: Log.php 项目: PHPforks/phan
 public static function getInstance() : Log
 {
     if (empty(self::$instance)) {
         self::$instance = new Log();
     }
     return self::$instance;
 }
示例#2
0
文件: Log.php 项目: Jvbzephir/phan
 public static function getInstance() : Log
 {
     if (null === self::$instance) {
         self::$instance = new static();
     }
     return self::$instance;
 }