| Total Complexity | 4 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class TestCase extends BaseTestCase |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected const SERVER_NAME = 'debugServer'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected const VFS_PREFIX = 'vfs://'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected const ROOT_DIR = __DIR__ . '/storage/testRoot'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | protected const CONFIG_HOST = 'http://localhost/debug/'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var UriParserInterface|null |
||
| 35 | */ |
||
| 36 | protected $uriParser; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return UriParserInterface |
||
| 40 | */ |
||
| 41 | protected function getUriParser(): UriParserInterface |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param string $message |
||
| 52 | */ |
||
| 53 | protected function notice(string $message): void |
||
| 61 |