1 | <?php |
||
24 | class Bootstrap |
||
25 | { |
||
26 | /** |
||
27 | * @var ConfigLoaderInterface |
||
28 | */ |
||
29 | protected $configLoader; |
||
30 | |||
31 | /** |
||
32 | * @var DiContainerFactoryInterface |
||
33 | */ |
||
34 | protected $diContainerFactory; |
||
35 | |||
36 | /** |
||
37 | * @var Config |
||
38 | */ |
||
39 | protected $config; |
||
40 | |||
41 | /** |
||
42 | * @var ContainerInterface |
||
43 | */ |
||
44 | protected $diContainer; |
||
45 | |||
46 | 4 | public function __construct(ConfigLoaderInterface $configLoader, DiContainerFactoryInterface $diContainerFactory) |
|
51 | |||
52 | 4 | public function __invoke() |
|
62 | |||
63 | 4 | protected function loadConfig() |
|
68 | |||
69 | 4 | protected function buildDiContainer() |
|
75 | |||
76 | 4 | protected function setPhpSettings() |
|
84 | |||
85 | 4 | protected function registerErrorHandler() |
|
93 | } |
||
94 |