Skip to content

Commit 64dd9da

Browse files
committed
Formatting
1 parent 372a22a commit 64dd9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Foundation/Bootstrap/LoadConfigurationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testLoadsBaseConfiguration()
1212
{
1313
$app = new Application();
1414

15-
(new LoadConfiguration())->bootstrap($app);
15+
(new LoadConfiguration)->bootstrap($app);
1616

1717
$this->assertSame('Laravel', $app['config']['app.name']);
1818
}
@@ -22,7 +22,7 @@ public function testDontLoadBaseConfiguration()
2222
$app = new Application();
2323
$app->dontMergeFrameworkConfiguration();
2424

25-
(new LoadConfiguration())->bootstrap($app);
25+
(new LoadConfiguration)->bootstrap($app);
2626

2727
$this->assertNull($app['config']['app.name']);
2828
}
@@ -32,7 +32,7 @@ public function testLoadsConfigurationInIsolation()
3232
$app = new Application(__DIR__.'/../fixtures');
3333
$app->useConfigPath(__DIR__.'/../fixtures/config');
3434

35-
(new LoadConfiguration())->bootstrap($app);
35+
(new LoadConfiguration)->bootstrap($app);
3636

3737
$this->assertNull($app['config']['bar.foo']);
3838
$this->assertSame('bar', $app['config']['custom.foo']);

0 commit comments

Comments
 (0)