1 | <?php |
||
13 | class EntryPoint |
||
14 | { |
||
15 | /** |
||
16 | * @param string $appClass |
||
17 | * @param callable $dependenciesDefFactory |
||
18 | */ |
||
19 | public function enter($appClass, callable $dependenciesDefFactory) |
||
31 | |||
32 | /** |
||
33 | * @param array $definitionSources |
||
34 | * |
||
35 | * @return Container |
||
36 | */ |
||
37 | protected function createContainer(array $definitionSources) |
||
49 | |||
50 | /** |
||
51 | * @param Container $container |
||
52 | * @param string $appClass |
||
53 | * |
||
54 | * @throws DependencyException |
||
55 | * @throws NotFoundException |
||
56 | * |
||
57 | * @return ApplicationInterface |
||
58 | */ |
||
59 | protected function createApplication(Container $container, $appClass) |
||
66 | } |
||
67 |