| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function register() |
||
| 24 | { |
||
| 25 | 6 | $this->app->singleton(Interactor::class, function ($app) { |
|
| 26 | 4 | return new Interactor($app); |
|
| 27 | 6 | }); |
|
| 28 | |||
| 29 | 6 | $this->app->alias(Interactor::class, InteractorContract::class); |
|
| 30 | |||
| 31 | 6 | $this->commands([ |
|
| 32 | 6 | InteractionMakeCommand::class, |
|
| 33 | ]); |
||
| 34 | 6 | } |
|
| 35 | |||
| 49 |