Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 2 | Features | 0 |
1 | <?php |
||
19 | public function boot() |
||
20 | { |
||
21 | $this->app->bind('command.model-doc:generate', GenerateModelDocumentation::class); |
||
22 | $this->app->bind('command.drop:collection', DropCollection::class); |
||
23 | |||
24 | $this->commands([ |
||
25 | 'command.model-doc:generate', |
||
26 | ]); |
||
27 | |||
28 | $this->commands([ |
||
29 | 'command.drop:collection', |
||
30 | ]); |
||
55 |