| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1.0046 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | 22 | protected function registerEmailChangeBroker() |
|
| 43 | { |
||
| 44 | 22 | $this->app->singleton('auth.email_changes', function ($app) { |
|
| 45 | 21 | return new BrokerManager($app); |
|
| 46 | 22 | }); |
|
| 47 | |||
| 48 | 22 | $this->app->bind('auth.email_changes.broker', function ($app) { |
|
| 49 | return $app->make('auth.email_changes')->broker(); |
||
| 50 | 22 | }); |
|
| 63 |