예제 #1
0
파일: Start.php 프로젝트: t-ishida/Moshas
 public function __construct(Scraper $scraper, $definition, $next)
 {
     parent::__construct($next);
     $this->scraper = $scraper;
     $this->definition = $definition;
 }
예제 #2
0
 public function __construct(Scraper $scraper, array $definitions, $next)
 {
     parent::__construct($next);
     $this->scraper = $scraper;
     $this->definitions = $definitions;
 }
예제 #3
0
 public function __construct(Scraper $scraper, array $fieldDefinitions, $next = null)
 {
     parent::__construct($next);
     $this->scraper = $scraper;
     $this->fieldDefinitions = $fieldDefinitions;
 }