Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class ConsoleServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | |||
12 | protected $commands = [ |
||
13 | ApiGenerator::class, |
||
14 | ]; |
||
15 | |||
16 | /** |
||
17 | * Register the commands. |
||
18 | */ |
||
19 | public function register() |
||
20 | { |
||
21 | $this->commands($this->commands); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return array |
||
26 | */ |
||
27 | public function provides() |
||
30 | } |
||
31 | } |