| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | protected function registerCommands() |
||
| 37 | { |
||
| 38 | $this->app->singleton('command.vueg.component', function ($app) { |
||
| 39 | return $app[MakeComponent::class]; |
||
| 40 | }); |
||
| 41 | |||
| 42 | $this->app->singleton('command.vueg.mixin', function ($app) { |
||
| 43 | return $app[MakeMixin::class]; |
||
| 44 | }); |
||
| 45 | |||
| 46 | $this->commands('command.vueg.component'); |
||
| 47 | |||
| 48 | $this->commands('command.vueg.mixin'); |
||
| 49 | } |
||
| 50 | } |
||
| 51 |