コード例 #1
0
ファイル: yProfiler.php プロジェクト: ExceptVL/kanon
 /**
  * Get yProfiler instance.
  * @return yProfiler
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }