| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 138 | public function register(): void |
|
| 29 | { |
||
| 30 | 138 | parent::register(); |
|
| 31 | |||
| 32 | $this->bind(RedirectorProvider::class, function (Application $app) { |
||
| 33 | 120 | return $app->make($app['config']->get('missing-urls.provider')); |
|
| 34 | 138 | }); |
|
| 35 | 138 | $this->singleton(RedirectorManager::class, MissingUrlsRedirector::class); |
|
| 36 | 138 | } |
|
| 37 | |||
| 51 |