コード例 #1
0
ファイル: Services.php プロジェクト: Kervinou/OBM
 /**
  * return the unique instance of OBM_Services object
  * @access public
  * @return OBM_Services
  **/
 public static function getInstance() {
   if (!(self::$instance instanceof self)) {
     self::$instance = new OBM_Services();
   }
   return self::$instance;
 }