Exemplo n.º 1
0
 public function __construct(SectionRepositoryInterface $sections, AuthenticatorInterface $auth, AdminRepositoryInterface $admin, AdminRegistrationNotifierInterface $notifier)
 {
     parent::__construct($sections);
     $this->auth = $auth;
     $this->admin = $admin;
     $this->notifier = $notifier;
 }
Exemplo n.º 2
0
 public function __construct(SectionRepositoryInterface $sections, SectionValidator $sectionValidator, PostRepositoryInterface $post)
 {
     parent::__construct($sections);
     $this->sectionValidator = $sectionValidator;
     $this->post = $post;
     $this->result = [];
     $this->section = $sections;
 }
Exemplo n.º 3
0
 public function __construct(SectionRepositoryInterface $sections, AdminRepositoryInterface $admins, RoleRepositoryInterface $roles, AdminAuthorizerInterface $authorizer, AdminValidatorInterface $validator, AdminRegistrationNotifierInterface $notifier)
 {
     parent::__construct($sections);
     $this->admins = $admins;
     $this->roles = $roles;
     $this->authorizer = $authorizer;
     $this->validator = $validator;
     $this->notifier = $notifier;
 }
Exemplo n.º 4
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function __construct(SectionRepositoryInterface $sections, PostRepositoryInterface $post, ImageRepositoryInterface $image, ManagerInterface $manager, VideoRepositoryInterface $video, TagRepositoryInterface $tags, TagValidatorInterface $tagValidator, PostValidatorInterface $validator, StoreInterface $store, FilterResponseInterface $filter_response, ParserInterface $parser_interface, HelperInterface $helper)
 {
     parent::__construct($sections);
     $this->posts = $post;
     $this->manager = $manager;
     $this->images = $image;
     $this->videos = $video;
     $this->validator = $validator;
     $this->sections = $sections;
     $this->tags = $tags;
     $this->tagValidator = $tagValidator;
     $this->store = $store;
     $this->filter_response = $filter_response;
     $this->parser_interface = $parser_interface;
     $this->helper = $helper;
 }
Exemplo n.º 5
0
 public function __construct(SectionRepositoryInterface $sections, TagRepositoryInterface $tag)
 {
     parent::__construct($sections);
     $this->section = $sections;
     $this->tag = $tag;
 }
Exemplo n.º 6
0
 public function __construct(SectionRepositoryInterface $sections, SectionValidator $validator, HelperInterface $helper)
 {
     parent::__construct($sections);
     $this->validator = $validator;
     $this->helper = $helper;
 }
Exemplo n.º 7
0
 public function __construct(ApplicationRepositoryInterface $application, ApplicationValidator $validator, SectionRepositoryInterface $sections)
 {
     parent::__construct($sections);
     $this->application = $application;
     $this->validator = $validator;
 }
Exemplo n.º 8
0
 public function __construct(Sections $sections, Permissions $permissions, PermissionValidator $validator)
 {
     parent::__construct($sections);
     $this->permissions = $permissions;
     $this->validator = $validator;
 }
Exemplo n.º 9
0
 public function __construct(Sections $sections, Roles $roles, RoleValidator $validator)
 {
     parent::__construct($sections);
     $this->roles = $roles;
     $this->validator = $validator;
 }