| 1 | <?php declare(strict_types=1); |
||
| 26 | const DEFAULT_CONTROLLER_METHOD = 'index'; |
||
| 27 | const NOT_FOUND_METHOD = 'notFound'; |
||
| 28 | const ERROR_MESSAGE_METHOD = 'errorPage'; |
||
| 29 | const SRC_DIR = SRC_DIR; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Load configuration options from .toml files |
||
| 33 | * |
||
| 34 | * @param string $path - Path to load config |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | function loadToml(string $path): array |