File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/Foundation/Bootstrap Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public function testLoadsBaseConfiguration()
12
12
{
13
13
$ app = new Application ();
14
14
15
- (new LoadConfiguration () )->bootstrap ($ app );
15
+ (new LoadConfiguration )->bootstrap ($ app );
16
16
17
17
$ this ->assertSame ('Laravel ' , $ app ['config ' ]['app.name ' ]);
18
18
}
@@ -22,7 +22,7 @@ public function testDontLoadBaseConfiguration()
22
22
$ app = new Application ();
23
23
$ app ->dontMergeFrameworkConfiguration ();
24
24
25
- (new LoadConfiguration () )->bootstrap ($ app );
25
+ (new LoadConfiguration )->bootstrap ($ app );
26
26
27
27
$ this ->assertNull ($ app ['config ' ]['app.name ' ]);
28
28
}
@@ -32,7 +32,7 @@ public function testLoadsConfigurationInIsolation()
32
32
$ app = new Application (__DIR__ .'/../fixtures ' );
33
33
$ app ->useConfigPath (__DIR__ .'/../fixtures/config ' );
34
34
35
- (new LoadConfiguration () )->bootstrap ($ app );
35
+ (new LoadConfiguration )->bootstrap ($ app );
36
36
37
37
$ this ->assertNull ($ app ['config ' ]['bar.foo ' ]);
38
38
$ this ->assertSame ('bar ' , $ app ['config ' ]['custom.foo ' ]);
You can’t perform that action at this time.
0 commit comments