コード例 #1
0
ファイル: Delivery.php プロジェクト: simaranjit/fmanager
 /**
  * @see DeliveryFactory::create
  */
 public static function create(array $options = array())
 {
     return DeliveryFactory::create($options);
 }
コード例 #2
0
 private function getDeliveryInstance()
 {
     return DeliveryFactory::create(array(DeliveryFactory::OPT_MINI => $this->optminifyidentifiers, DeliveryFactory::OPT_GLOB => $this->optglobals, DeliveryFactory::OPT_INCL => $this->optincludes, DeliveryFactory::OPT_PFMT => $this->optpragmafmt, DeliveryFactory::OPT_PRGS => $this->optpragmas, DeliveryFactory::OPT_PPRG => $this->optparsepragmas));
 }