Skip to content

Commit 342197e

Browse files
authored
Update ResolvesDumpSourceTest.php
1 parent b3735ca commit 342197e

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

tests/Foundation/Concerns/ResolvesDumpSourceTest.php

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
namespace Illuminate\Tests\Foundation\Configuration;
44

5-
use Illuminate\Foundation\Concerns\ResolvesDumpSource;
6-
use PHPUnit\Framework\TestCase;
7-
use Illuminate\Config\Repository as Config;
85
use Illuminate\Auth\AuthManager;
6+
use Illuminate\Config\Repository as Config;
97
use Illuminate\Container\Container;
8+
use Illuminate\Foundation\Concerns\ResolvesDumpSource;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class ResolvesDumpSourceTest extends TestCase
1212
{
@@ -30,7 +30,8 @@ protected function getEnvironmentSetUp($app)
3030

3131
public function testItMapsRemotePathToLocalPath()
3232
{
33-
$mock = new class {
33+
$mock = new class
34+
{
3435
use ResolvesDumpSource;
3536

3637
public function testMap($path)
@@ -51,7 +52,8 @@ public function testItReturnsOriginalPathWhenNoConfigIsSet()
5152
config()->set('app.local_sites_path', null);
5253
config()->set('app.remote_sites_path', null);
5354

54-
$mock = new class {
55+
$mock = new class
56+
{
5557
use ResolvesDumpSource;
5658

5759
public function testMap($path)
@@ -67,7 +69,8 @@ public function testMap($path)
6769

6870
public function testItReturnsOriginalPathWhenPathDoesNotMatchRemote()
6971
{
70-
$mock = new class {
72+
$mock = new class
73+
{
7174
use ResolvesDumpSource;
7275

7376
public function testMap($path)

0 commit comments

Comments
 (0)