| 1 | <?php  | 
            ||
| 15 | final class ImporterChain implements ImporterChainInterface  | 
            ||
| 16 | { | 
            ||
| 17 | /** @var ImporterInterface[] */  | 
            ||
| 18 | private $importers = [];  | 
            ||
| 19 | |||
| 20 | public function addImporter(ImporterInterface $importer): void  | 
            ||
| 24 | |||
| 25 | public function getImporterForResource(string $resourceCode): ImporterInterface  | 
            ||
| 38 | }  | 
            ||
| 39 |