Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class PintuProvider extends ServiceProvider |
||
10 | { |
||
11 | use PintuLaravelRouting; |
||
12 | |||
13 | /** |
||
14 | * List all registered commands. |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $console = [ |
||
19 | ComponentGenerator::class |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Register class functionality. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 1 | public function register(): void |
|
34 |