File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
tests/Foundation/Concerns Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Illuminate \Tests \Foundation \Configuration ;
4
4
5
- use Illuminate \Foundation \Concerns \ResolvesDumpSource ;
6
- use PHPUnit \Framework \TestCase ;
7
- use Illuminate \Config \Repository as Config ;
8
5
use Illuminate \Auth \AuthManager ;
6
+ use Illuminate \Config \Repository as Config ;
9
7
use Illuminate \Container \Container ;
8
+ use Illuminate \Foundation \Concerns \ResolvesDumpSource ;
9
+ use PHPUnit \Framework \TestCase ;
10
10
11
11
class ResolvesDumpSourceTest extends TestCase
12
12
{
@@ -30,7 +30,8 @@ protected function getEnvironmentSetUp($app)
30
30
31
31
public function testItMapsRemotePathToLocalPath ()
32
32
{
33
- $ mock = new class {
33
+ $ mock = new class
34
+ {
34
35
use ResolvesDumpSource;
35
36
36
37
public function testMap ($ path )
@@ -51,7 +52,8 @@ public function testItReturnsOriginalPathWhenNoConfigIsSet()
51
52
config ()->set ('app.local_sites_path ' , null );
52
53
config ()->set ('app.remote_sites_path ' , null );
53
54
54
- $ mock = new class {
55
+ $ mock = new class
56
+ {
55
57
use ResolvesDumpSource;
56
58
57
59
public function testMap ($ path )
@@ -67,7 +69,8 @@ public function testMap($path)
67
69
68
70
public function testItReturnsOriginalPathWhenPathDoesNotMatchRemote ()
69
71
{
70
- $ mock = new class {
72
+ $ mock = new class
73
+ {
71
74
use ResolvesDumpSource;
72
75
73
76
public function testMap ($ path )
You can’t perform that action at this time.
0 commit comments