| Total Complexity | 5 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class TestKernel extends \AppKernel |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Registers your custom bundles |
||
| 14 | * |
||
| 15 | * @return array |
||
| 16 | */ |
||
| 17 | protected function registerProjectBundles() |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | new FlagbitTableAttributeBundle(), |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function getRootDir(): string |
||
| 28 | { |
||
| 29 | return __DIR__; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getCacheDir(): string |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getLogDir(): string |
||
| 52 | } |
||
| 53 | |||
| 54 | protected function build(ContainerBuilder $container) |
||
| 58 | } |
||
| 59 | |||
| 61 |