| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AppKernel extends Kernel |
||
| 11 | { |
||
| 12 | public function getCacheDir() |
||
| 13 | { |
||
| 14 | return sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'cache'; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getLogDir(): string |
||
| 18 | { |
||
| 19 | return sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'logs'; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function registerBundles(): array |
||
| 23 | { |
||
| 24 | return []; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function registerContainerConfiguration(LoaderInterface $loader): void |
||
| 28 | { |
||
| 29 | } |
||
| 31 |