1 | <?php |
||
8 | class Definitions |
||
9 | { |
||
10 | /** @var array */ |
||
11 | protected $sources; |
||
12 | |||
13 | /** @var string */ |
||
14 | protected $tempDir = __DIR__.'/temp'; |
||
15 | |||
16 | public function __construct(array $sources) |
||
20 | |||
21 | public function preload() |
||
27 | |||
28 | public function query(string $sourceId, string $selector): Crawler |
||
32 | |||
33 | public function getSourceIds(): array |
||
37 | |||
38 | protected function loadSource(string $sourceId, bool $fromCache = true): string |
||
56 | } |
||
57 |