コード例 #1
0
ファイル: Registry.php プロジェクト: ircoco/BlackCatCMS
 /**
  * get singleton
  *
  * @access public
  * @return object
  **/
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }