1 | <?php |
||
22 | final class X5ULoaderCommand extends AbstractObjectOutputCommand |
||
23 | { |
||
24 | /** |
||
25 | * @var X5UFactory |
||
26 | */ |
||
27 | private $x5uFactory; |
||
28 | |||
29 | /** |
||
30 | * X5ULoaderCommand constructor. |
||
31 | * |
||
32 | * @param X5UFactory $x5uFactory |
||
33 | * @param JsonConverterInterface $jsonConverter |
||
34 | * @param null $name |
||
35 | */ |
||
36 | public function __construct(X5UFactory $x5uFactory, JsonConverterInterface $jsonConverter, $name = null) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | protected function configure() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | protected function execute(InputInterface $input, OutputInterface $output) |
||
65 | } |
||
66 |