File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ class Kernel
10
10
{
11
11
private $ bundlesInitialized = false ;
12
12
private $ containerInitialized = false ;
13
+ private $ container ;
14
+ private $ bundles ;
13
15
14
16
public function __construct ($ env , $ debug )
15
17
{
@@ -18,11 +20,13 @@ public function __construct($env, $debug)
18
20
public function initializeBundles ()
19
21
{
20
22
$ this ->bundlesInitialized = true ;
23
+ $ this ->bundles = [];
21
24
}
22
25
23
26
public function initializeContainer ()
24
27
{
25
28
$ this ->containerInitialized = true ;
29
+ $ this ->container = new Container ();
26
30
}
27
31
28
32
public function getBundles ()
@@ -31,7 +35,7 @@ public function getBundles()
31
35
throw new \Exception ('Bundles not initialized ' );
32
36
}
33
37
34
- return [] ;
38
+ return $ this -> bundles ;
35
39
}
36
40
37
41
public function getContainer ()
@@ -40,7 +44,7 @@ public function getContainer()
40
44
throw new \Exception ('Container not initialized ' );
41
45
}
42
46
43
- return new Container () ;
47
+ return $ this -> container ;
44
48
}
45
49
46
50
public function handle (Request $ request )
You can’t perform that action at this time.
0 commit comments