コード例 #1
0
ファイル: Base.php プロジェクト: haaseit/hcsf
 /**
  * Base constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireModuleCustomer = true;
 }
コード例 #2
0
ファイル: Base.php プロジェクト: haaseit/hcsf
 /**
  * Base constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireAdminAuth = true;
 }
コード例 #3
0
ファイル: Glide.php プロジェクト: haaseit/hcsf
 public function __construct(ServiceManager $serviceManager, $aPath)
 {
     parent::__construct($serviceManager);
     $this->aPath = $aPath;
 }
コード例 #4
0
ファイル: Sandbox.php プロジェクト: haaseit/hcsf
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->entityManager = $serviceManager->get('entitymanager');
 }