| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function register() |
||
| 28 | { |
||
| 29 | 37 | $this->app->bind('App\Services\GuestTableService', function ($app) { |
|
|
|
|||
| 30 | 7 | return new GuestTableService(); |
|
| 31 | 37 | }); |
|
| 32 | 37 | $this->app->bind('App\Services\ReservationTableService', function ($app) { |
|
| 33 | 2 | return new ReservationTableService(); |
|
| 34 | 37 | }); |
|
| 35 | 37 | $this->app->bind('App\Services\RoomTableService', function ($app) { |
|
| 36 | 8 | return new RoomTableService(); |
|
| 37 | 37 | }); |
|
| 40 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.