| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 7 | public function __construct(string $path = null) |
|
| 25 | { |
||
| 26 | 7 | $path = $path ? ltrim($path, '/') : 'config/routes.yml'; |
|
| 27 | |||
| 28 | 7 | $this->rootDir = UriResolver::removeDotSegments(__DIR__.'/../../../'); |
|
| 29 | 7 | $this->routeFile = "{$this->rootDir}{$path}"; |
|
| 30 | 7 | $this->parser = new Parser(); |
|
| 31 | 7 | } |
|
| 52 |