コード例 #1
0
 /**
  * Returns an instance of class
  *
  * @return BOL_BillingGatewayProductDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
コード例 #2
0
ファイル: billing_service.php プロジェクト: ZyXelP/oxwall
 public function deleteGatewayProductsByPluginKey($pluginKey)
 {
     $this->billingGatewayProductDao->deleteByPluginKey($pluginKey);
 }