Total Complexity | 3 |
Total Lines | 60 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class RefreshToken extends Command |
||
21 | { |
||
22 | /** |
||
23 | * Store Id. |
||
24 | */ |
||
25 | public const STORE_ID = 'store_id'; |
||
26 | |||
27 | /** |
||
28 | * @var Refresh |
||
29 | */ |
||
30 | protected $refresh; |
||
31 | |||
32 | /** |
||
33 | * @var State |
||
34 | */ |
||
35 | protected $state; |
||
36 | |||
37 | /** |
||
38 | * @param State $state |
||
39 | * @param Refresh $refresh |
||
40 | */ |
||
41 | public function __construct( |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * Execute. |
||
52 | * |
||
53 | * @param InputInterface $input |
||
54 | * @param OutputInterface $output |
||
55 | */ |
||
56 | protected function execute( |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * Configure. |
||
69 | * |
||
70 | * @return void |
||
71 | */ |
||
72 | protected function configure() |
||
82 |