예제 #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;
 }