| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | private function registerInstallCommand() |
||
| 38 | { |
||
| 39 | $this->app->singleton('command.imokhles.make.multi-auth', function ($app) { |
||
| 40 | return new MultiAuthPrepare(new MigrationCreator($app['files'], $app->basePath('Stubs')), new Composer($app['files'])); |
||
| 41 | }); |
||
| 42 | $this->app->singleton('command.imokhles.make.multi-auth.list-themes', function ($app) { |
||
|
|
|||
| 43 | return new MultiAuthListThemes(); |
||
| 44 | }); |
||
| 45 | $this->commands([ |
||
| 46 | 'MultiAuthPrepare' => 'command.imokhles.make.multi-auth', |
||
| 47 | 'MultiAuthListThemes' => 'command.imokhles.make.multi-auth.list-themes', |
||
| 48 | ]); |
||
| 49 | } |
||
| 50 | } |
||
| 52 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.