1 | <?php |
||
16 | class TokenCommand extends Command |
||
17 | { |
||
18 | /** |
||
19 | * @var Token |
||
20 | */ |
||
21 | private $token; |
||
22 | |||
23 | /** |
||
24 | * @param Token $token |
||
25 | */ |
||
26 | 1 | public function __construct(Token $token) |
|
27 | { |
||
28 | 1 | parent::__construct(); |
|
29 | |||
30 | 1 | $this->token = $token; |
|
31 | 1 | } |
|
32 | |||
33 | 1 | public function getToken() |
|
37 | |||
38 | 1 | protected function configure() |
|
49 | |||
50 | /** |
||
51 | * @param InputInterface $input |
||
52 | * @param OutputInterface $output |
||
53 | */ |
||
54 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
62 | } |
||
63 |