示例#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');
 }