| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function boot(Router $router) |
||
| 14 | { |
||
| 15 | $this->publishes([ |
||
| 16 | __DIR__ . '/Config/signed-url.php' => config_path('signed-url.php'), |
||
| 17 | ], 'signed-url'); |
||
| 18 | |||
| 19 | $this->app->singleton('signed-url', function () { |
||
| 20 | return new SignedUrl(); |
||
| 21 | }); |
||
| 22 | |||
| 23 | $router->aliasMiddleware('signed-url', config('signed-url.middleware')); |
||
| 24 | |||
| 25 | $this->app->alias(SignedUrl::class, 'signed-url'); |
||
| 26 | } |
||
| 38 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths