public function __construct($acl, $em, $config, $userMapper, $userService)
 {
     parent::__construct($acl, $em);
     $this->config = $config;
     $this->setUserMapper($userMapper);
     $this->setUserService($userService);
 }
 public function __construct($acl, $em, $config, $adminModuleManager, $viewRenderer, $filemanager)
 {
     parent::__construct($acl, $em);
     $this->setConfig($config);
     $this->setAdminModuleManagerService($adminModuleManager);
     $this->setViewRenderer($viewRenderer);
     $this->setFilemanager($filemanager);
 }
Example #3
0
 public function __construct($acl, $em, $config, $roleMapper)
 {
     parent::__construct($acl, $em);
     $this->setConfig($config);
     $this->setRoleMapper($roleMapper);
 }