| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function register() |
||
| 15 | { |
||
| 16 | $this->mergeConfigFrom( |
||
| 17 | __DIR__.'/config/config.php', 'lumen-api-generator' |
||
| 18 | ); |
||
| 19 | |||
| 20 | $this->app->singleton('command.api.make', function ($app) { |
||
| 21 | return new ApiMakeCommand($app['files']); |
||
| 22 | }); |
||
| 23 | |||
| 24 | $this->commands('command.api.make'); |
||
| 25 | } |
||
| 26 | |||
| 39 |