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