| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function register() |
||
| 31 | { |
||
| 32 | // Register console commands |
||
| 33 | $this->registerCommands($this->commands); |
||
| 34 | |||
| 35 | // Register the password reset broker manager |
||
| 36 | $this->app->singleton('auth.password', function ($app) { |
||
| 37 | return new PasswordResetBrokerManager($app); |
||
| 38 | }); |
||
| 39 | |||
| 40 | // Register the verification broker manager |
||
| 41 | $this->app->singleton('rinvex.auth.emailverification', function ($app) { |
||
| 42 | return new EmailVerificationBrokerManager($app); |
||
| 43 | }); |
||
| 44 | } |
||
| 45 | |||
| 55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.