| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 210 | public function register() |
|
| 41 | { |
||
| 42 | 210 | $this->mergeConfigFrom(__DIR__.'/../config/initializer.php', 'initializer'); |
|
| 43 | |||
| 44 | 210 | $this->app->bind('app.installer', \App\Install::class); |
|
| 45 | 210 | $this->app->bind('app.updater', \App\Update::class); |
|
| 46 | |||
| 47 | 210 | $this->app->bind(Runner::class, Run::class); |
|
| 48 | 210 | } |
|
| 49 | } |
||
| 50 |