| 1 | <?php |
||
| 16 | final class Import extends Command |
||
| 17 | { |
||
| 18 | /** @var ImporterInterface */ |
||
| 19 | private $importer; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param ImporterInterface $importer |
||
| 23 | */ |
||
| 24 | public function __construct(ImporterInterface $importer) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | protected function configure() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 48 | } |
||
| 49 |