| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 4 | public function __construct(string $path = null) |
|
| 24 | { |
||
| 25 | 4 | $path = $path ?? '/config/routes.yml'; |
|
| 26 | 4 | list($scriptName) = get_included_files(); |
|
| 27 | |||
| 28 | 4 | $this->rootDir = dirname(realpath($scriptName)); |
|
| 29 | 4 | $this->routeFile = "{$this->rootDir}{$path}"; |
|
| 30 | 4 | $this->parser = new Parser(); |
|
| 31 | 4 | } |
|
| 52 |