1 | <?php |
||
25 | final class JKULoaderCommand extends AbstractObjectOutputCommand |
||
26 | { |
||
27 | /** |
||
28 | * @var JKUFactory |
||
29 | */ |
||
30 | private $jkuFactory; |
||
31 | |||
32 | /** |
||
33 | * JKULoaderCommand constructor. |
||
34 | * |
||
35 | * @param JKUFactory $jkuFactory |
||
36 | * @param JsonConverterInterface $jsonConverter |
||
37 | * @param null|string $name |
||
38 | */ |
||
39 | public function __construct(JKUFactory $jkuFactory, JsonConverterInterface $jsonConverter, ?string $name = null) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function configure() |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | protected function execute(InputInterface $input, OutputInterface $output) |
||
68 | } |
||
69 |