@@ -32,15 +32,15 @@ public function setUp()
32
32
*/
33
33
public function creates_a_container ()
34
34
{
35
- $ this ->assertInstanceOf ('DI\Container ' , (new Kernel )->createContainer ());
35
+ $ this ->assertInstanceOf ('DI\Container ' , (new Kernel () )->createContainer ());
36
36
}
37
37
38
38
/**
39
39
* @test
40
40
*/
41
41
public function registers_puli_repository ()
42
42
{
43
- $ container = (new Kernel )->createContainer ();
43
+ $ container = (new Kernel () )->createContainer ();
44
44
$ this ->assertInstanceOf (ResourceRepository::class, $ container ->get (ResourceRepository::class));
45
45
}
46
46
@@ -49,7 +49,7 @@ public function registers_puli_repository()
49
49
*/
50
50
public function registers_puli_discovery ()
51
51
{
52
- $ container = (new Kernel )->createContainer ();
52
+ $ container = (new Kernel () )->createContainer ();
53
53
$ this ->assertInstanceOf (Discovery::class, $ container ->get (Discovery::class));
54
54
}
55
55
@@ -58,10 +58,10 @@ public function registers_puli_discovery()
58
58
*/
59
59
public function registers_module_configuration_files ()
60
60
{
61
- $ this ->createPuliResource ('/blog/config.php ' , __DIR__ . '/Fixture/config.php ' );
61
+ $ this ->createPuliResource ('/blog/config.php ' , __DIR__ . '/Fixture/config.php ' );
62
62
$ this ->bindPuliResource ('/blog/config.php ' , Kernel::PULI_BINDING_NAME );
63
63
64
- $ container = (new Kernel )->createContainer ();
64
+ $ container = (new Kernel () )->createContainer ();
65
65
$ this ->assertEquals ('bar ' , $ container ->get ('foo ' ));
66
66
}
67
67
0 commit comments