示例#1
0
 /**
  * @param ISearchControlFactory $factory
  * @return SearchControl
  */
 protected function createComponentSearch(ISearchControlFactory $factory)
 {
     $control = parent::createComponentSearch($factory);
     if ($this->search) {
         $control->setSearch($this->search);
     }
     return $control;
 }
 /**
  * @param CharacterFinder $characterFinder
  */
 public function __construct(CharacterFinder $characterFinder)
 {
     parent::__construct();
     $this->characterFinder = $characterFinder;
 }
示例#3
0
 /**
  * @param EpisodesFinder $episodesFinder
  */
 public function __construct(EpisodesFinder $episodesFinder)
 {
     parent::__construct();
     $this->episodesFinder = $episodesFinder;
 }
示例#4
0
 /**
  * @param SeasonFinder $seasonFinder
  */
 public function __construct(SeasonFinder $seasonFinder, LanguageFinder $languageFinder)
 {
     parent::__construct();
     $this->seasonFinder = $seasonFinder;
     $this->languageFinder = $languageFinder;
 }
示例#5
0
 /**
  * @param SeasonFinder $seasonFinder
  */
 public function __construct(SeasonFinder $seasonFinder)
 {
     parent::__construct();
     $this->seasonFinder = $seasonFinder;
 }
示例#6
0
 /**
  * @param ILogger $logger
  */
 public function __construct(ILogger $logger)
 {
     parent::__construct();
     $this->logger = $logger;
 }