| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class ImportProcessor implements ImportProcessorInterface |
||
| 19 | { |
||
| 20 | /** @var ImporterChainInterface */ |
||
| 21 | private $importerChain; |
||
| 22 | |||
| 23 | /** @var ReaderInterface */ |
||
| 24 | private $reader; |
||
| 25 | |||
| 26 | /** @var EntityManagerInterface */ |
||
| 27 | private $entityManager; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 37 | } |
||
| 38 | |||
| 39 | public function process(string $resourceCode, string $filePath): void |
||
| 59 |