| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class TestKernel extends Kernel |
||
| 12 | { |
||
| 13 | public function registerBundles(): array |
||
| 14 | { |
||
| 15 | return [ |
||
| 16 | new FrameworkBundle(), |
||
| 17 | new TwigBundle(), |
||
| 18 | new WebfactoryShortcodeBundle(), |
||
| 19 | ]; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 23 | { |
||
| 24 | $loader->load(__DIR__.'/config/config.yml'); |
||
| 25 | $loader->load(__DIR__.'/config/test_shortcodes.xml'); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getCacheDir(): string |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getLogDir(): string |
||
| 38 |