コード例 #1
0
ファイル: Project.php プロジェクト: ntcnhjdobr/simpleSite
 /**
  * Singleton pattern
  */
 static function instance()
 {
     if (!self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }