| 1 | <?php |
||
| 21 | class SimpleKernel extends Kernel |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var bool|null |
||
| 25 | */ |
||
| 26 | private $overrideFirst; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritdoc |
||
| 30 | */ |
||
| 31 | public function registerBundles() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 44 | |||
| 45 | public function setLocateResourceFirst(bool $overrideFirst = null) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritdoc |
||
| 52 | */ |
||
| 53 | public function locateResource($name, $dir = null, $first = true) |
||
| 61 | } |
||
| 62 |