Skip to content

Commit 53c2454

Browse files
nunomadurogithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 21718bc commit 53c2454

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Feature/Console/InstallCommandWslTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
test('isRunningInWsl returns true when WSL_DISTRO_NAME is set', function (): void {
99
putenv('WSL_DISTRO_NAME=Ubuntu');
1010

11-
$command = new InstallCommand(new Config());
11+
$command = new InstallCommand(new Config);
1212
$reflection = new ReflectionClass($command);
1313
$method = $reflection->getMethod('isRunningInWsl');
1414

@@ -18,7 +18,7 @@
1818
test('isRunningInWsl returns true when IS_WSL is set', function (): void {
1919
putenv('IS_WSL=1');
2020

21-
$command = new InstallCommand(new Config());
21+
$command = new InstallCommand(new Config);
2222
$reflection = new ReflectionClass($command);
2323
$method = $reflection->getMethod('isRunningInWsl');
2424

@@ -29,7 +29,7 @@
2929
putenv('WSL_DISTRO_NAME=Ubuntu');
3030
putenv('IS_WSL=true');
3131

32-
$command = new InstallCommand(new Config());
32+
$command = new InstallCommand(new Config);
3333
$reflection = new ReflectionClass($command);
3434
$method = $reflection->getMethod('isRunningInWsl');
3535

@@ -40,7 +40,7 @@
4040
putenv('WSL_DISTRO_NAME');
4141
putenv('IS_WSL');
4242

43-
$command = new InstallCommand(new Config());
43+
$command = new InstallCommand(new Config);
4444
$reflection = new ReflectionClass($command);
4545
$method = $reflection->getMethod('isRunningInWsl');
4646

@@ -51,7 +51,7 @@
5151
putenv('WSL_DISTRO_NAME=');
5252
putenv('IS_WSL=');
5353

54-
$command = new InstallCommand(new Config());
54+
$command = new InstallCommand(new Config);
5555
$reflection = new ReflectionClass($command);
5656
$method = $reflection->getMethod('isRunningInWsl');
5757

0 commit comments

Comments
 (0)