| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 46 | public function register() |
|
| 25 | { |
||
| 26 | 46 | $this->app->register(\Auth0\Login\LoginServiceProvider::class); |
|
| 27 | |||
| 28 | $this->app->bind(\Auth0\Login\Contract\Auth0UserRepository::class, function () { |
||
| 29 | 24 | return new Auth0Service(new UserService()); |
|
| 30 | 46 | }); |
|
| 31 | |||
| 32 | $this->app->bind(Auth0ServiceContract::class, function () { |
||
| 33 | 46 | return new Auth0Service(new UserService()); |
|
| 34 | 46 | }); |
|
| 37 |