예제 #1
0
 public function __construct(GameRepository $gameRepository, GameCategoryRepository $categoryRepository, PhotoRepositoryInterface $photoRepositoryInterface)
 {
     parent::__construct();
     $this->gameRepository = $gameRepository;
     $this->categoryRepository = $categoryRepository;
     $this->photoRepository = $photoRepositoryInterface;
 }
예제 #2
0
 public function __construct(MessageRepository $messageRepository, MessageConversationRepository $messageConversationRepository, UserRepository $userRepository)
 {
     $this->messageRepository = $messageRepository;
     $this->conversationRepository = $messageConversationRepository;
     $this->userRepository = $userRepository;
     parent::__construct();
 }
예제 #3
0
 public function __construct(PostRepository $postRepository, UserRepository $userRepository, HashtagRepository $hashtagRepository)
 {
     parent::__construct();
     $this->postRepository = $postRepository;
     $this->userRepository = $userRepository;
     $this->hashtagRepository = $hashtagRepository;
 }
예제 #4
0
 public function __construct(PageRepository $pageRepository, PageCategoryRepository $categoryRepository, PhotoRepositoryInterface $photoRepositoryInterface, PostRepository $postRepository, PageAdminRepository $adminRepository)
 {
     parent::__construct();
     $this->pageRepository = $pageRepository;
     $this->categoryRepository = $categoryRepository;
     $this->photo = $photoRepositoryInterface;
     $this->postRepository = $postRepository;
     $this->adminRepository = $adminRepository;
 }
예제 #5
0
 public function __construct(EventRepository $eventRepository, EventCategoryRepository $categoryRepository, PhotoRepositoryInterface $photoRepositoryInterface, PostRepository $postRepository, EventAdminRepository $adminRepository)
 {
     parent::__construct();
     $this->eventRepository = $eventRepository;
     $this->categoryRepository = $categoryRepository;
     $this->photo = $photoRepositoryInterface;
     $this->postRepository = $postRepository;
     $this->adminRepository = $adminRepository;
 }
예제 #6
0
 public function __construct(CommunityRepository $communityRepository)
 {
     $this->communityRepostory = $communityRepository;
     parent::__construct();
 }
 public function __construct(PhotoRepositoryInterface $photoRepositoryInterface)
 {
     parent::__construct();
     $this->photoRepository = $photoRepositoryInterface;
 }
 public function __construct(NotificationRepository $notificationRepository, NotificationReceiverRepository $notificationReceiverRepository)
 {
     $this->notificationRepository = $notificationRepository;
     $this->notificationReceiver = $notificationReceiverRepository;
     parent::__construct();
 }
예제 #9
0
 public function __construct(PostRepository $postRepository, HidePostRepository $hidePostRepository)
 {
     parent::__construct();
     $this->postRepository = $postRepository;
     $this->hidePost = $hidePostRepository;
 }
예제 #10
0
 public function __construct(ReportRepository $reportRepository)
 {
     $this->reportRepository = $reportRepository;
     parent::__construct();
 }
예제 #11
0
 public function __construct(CommentRepository $commentRepository)
 {
     parent::__construct();
     $this->commentRepository = $commentRepository;
 }
예제 #12
0
 public function __construct(InvitedMemberRepository $invitedMemberRepository)
 {
     $this->inviteRepository = $invitedMemberRepository;
     parent::__construct();
 }
예제 #13
0
 /**
  * @param string $path
  * @param array $param
  * @param array $settings
  * @return string
  */
 public function render($path, $param = [], $settings = [])
 {
     return parent::render('user.account.layout', ['content' => $this->theme->section($path, $param)], $settings);
 }
예제 #14
0
 public function __construct(LikeRepository $likeRepository)
 {
     $this->likeRepository = $likeRepository;
     parent::__construct();
 }
예제 #15
0
 public function __construct(CustomPageRepository $customPageRepository)
 {
     parent::__construct();
     $this->customRepository = $customPageRepository;
     $this->theme->share('customRepository', $this->customRepository);
 }
예제 #16
0
 public function __construct(OnlineRepository $onlineRepository)
 {
     $this->onlineRepository = $onlineRepository;
     parent::__construct();
 }