Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class Connector extends Command |
||
24 | { |
||
25 | protected $tokenProvider; |
||
26 | |||
27 | public function __construct( |
||
28 | TokenProviderInterface $tokenProvider, |
||
29 | string $name = null |
||
30 | ) { |
||
31 | $this->tokenProvider = $tokenProvider; |
||
32 | parent::__construct($name); |
||
33 | } |
||
34 | |||
35 | protected function configure() |
||
40 | } |
||
41 | |||
42 | protected function execute(InputInterface $input, OutputInterface $output) |
||
55 | } |
||
56 | } |
||
57 |