| 1 | <?php |
||
| 17 | final class Export extends Command |
||
| 18 | { |
||
| 19 | /** @var ExporterInterface */ |
||
| 20 | private $exporter; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param ExporterInterface $exporter |
||
| 24 | */ |
||
| 25 | public function __construct(ExporterInterface $exporter) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | protected function configure() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 58 | } |
||
| 59 |