1 | <?php |
||
11 | class GenerateSecretCommand extends Command |
||
12 | { |
||
13 | use StringUtilsTrait; |
||
14 | |||
15 | /** |
||
16 | * @var TranslatorInterface |
||
17 | */ |
||
18 | private $translator; |
||
19 | |||
20 | /** |
||
21 | * GenerateCharsetCommand constructor. |
||
22 | * @param TranslatorInterface $translator |
||
23 | * |
||
24 | * @Inject({"translator"}) |
||
25 | */ |
||
26 | public function __construct(TranslatorInterface $translator) |
||
31 | |||
32 | public function configure() |
||
39 | |||
40 | public function execute(InputInterface $input, OutputInterface $output) |
||
45 | } |
||
46 |