コード例 #1
0
ファイル: plugin_dao.php プロジェクト: hardikamutech/loov
 /**
  * Returns an instance of class (singleton pattern implementation).
  *
  * @return BOL_PluginDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }