| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | class RouteCompiler |
||
| 34 | { |
||
| 35 | /** |
||
| 36 | * The Route implementation. |
||
| 37 | * |
||
| 38 | * @var \Syscodes\Routing\Route $route |
||
| 39 | */ |
||
| 40 | protected $route; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Constructor. Create a new Route Compiler instance. |
||
| 44 | * |
||
| 45 | * @param \Syscodes\Routing\Route $route |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function __construct(Route $route) |
||
| 50 | { |
||
| 51 | $this->route = $route; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Get the inner route. |
||
| 56 | * |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | public function getRoute() |
||
| 62 | } |
||
| 63 | } |
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