| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 2 | public function register() |
|
| 32 | { |
||
| 33 | 2 | $this->mergeConfigFrom($this->configPath(), 'larsign'); |
|
| 34 | |||
| 35 | 2 | $this->app->bind(LarsignService::class, function ($app) { |
|
| 36 | 2 | return new LarsignService($app['config']->get('larsign')); |
|
| 37 | 2 | }); |
|
| 38 | |||
| 39 | 2 | $this->app->alias(LarsignService::class, 'larsign'); |
|
| 40 | 2 | } |
|
| 41 | |||
| 57 |