예제 #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');
 }