1 | <?php declare(strict_types=1); |
||
24 | class ExtractorsCollection implements ExtractorsCollectionInterface |
||
25 | { |
||
26 | protected $extractors = []; |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function get(string $name): PlainExtractorInterface |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function put(string $name, PlainExtractorInterface $extractor) |
||
50 | } |
||
51 |