1 | <?php |
||
18 | class Application |
||
19 | { |
||
20 | /** |
||
21 | * @var ContainerInterface |
||
22 | */ |
||
23 | protected $dependencyContainer; |
||
24 | |||
25 | 2 | public static function init(array $config) : Application |
|
29 | |||
30 | 2 | public function __construct(array $config, ContainerInterface $dependencyContainer = null) |
|
36 | |||
37 | 2 | public function setDependencyContainer(ContainerInterface $dependencyContainer) |
|
41 | |||
42 | 2 | public function getDependencyContainer() : ContainerInterface |
|
46 | |||
47 | } |
||
48 |