| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 106 | public function register() |
|
| 28 | { |
||
| 29 | $this->app->bind('App\Services\GuestTableService', function () { |
||
| 30 | 23 | return new GuestTableService(); |
|
| 31 | 106 | }); |
|
| 32 | $this->app->bind('App\Services\ReservationTableService', function () { |
||
| 33 | 39 | return new ReservationTableService(); |
|
| 34 | 106 | }); |
|
| 35 | $this->app->bind('App\Services\RoomTableService', function () { |
||
| 36 | 38 | return new RoomTableService(); |
|
| 37 | 106 | }); |
|
| 40 |