| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 4 | public function testConstruct() |
||
| 5 | { |
||
| 6 | $name = 'myRoute'; |
||
| 7 | $method = 'any'; |
||
| 8 | $path = '/test-uri'; |
||
| 9 | $request = new Suricate\Request(); |
||
| 10 | $routeTarget = 'myController::myMethod'; |
||
| 11 | $parametersDefinitions = array(); |
||
| 12 | $middleware = null; |
||
| 13 | |||
| 14 | $route = new Suricate\Route($name, $method, $path, $request, $routeTarget, $parametersDefinitions, $middleware); |
||
| 15 | |||
| 16 | $this->assertEquals($path, $route->getPath()); |
||
| 17 | } |
||
| 18 | } |
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