| 1 | <?php |
||
| 15 | class CreateToken extends Command |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var TokenModel |
||
| 19 | */ |
||
| 20 | private $token; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | 2 | protected function configure() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param TokenModel $token |
||
| 35 | */ |
||
| 36 | 2 | public function __construct(TokenModel $token) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 61 | } |
||
| 62 |