1 | <?php |
||
20 | final class ImportProcessor implements ImportProcessorInterface |
||
21 | { |
||
22 | /** @var ImporterChainInterface */ |
||
23 | private $importerChain; |
||
24 | |||
25 | /** @var ReaderInterface */ |
||
26 | private $reader; |
||
27 | |||
28 | /** @var EntityManagerInterface */ |
||
29 | private $entityManager; |
||
30 | |||
31 | public function __construct( |
||
40 | |||
41 | public function process(string $resourceCode, string $filePath): void |
||
58 | } |
||
59 |