diff --git a/tests/PhpFpmTest.php b/tests/PhpFpmTest.php index 6231bec69..3b0bf1196 100644 --- a/tests/PhpFpmTest.php +++ b/tests/PhpFpmTest.php @@ -95,7 +95,7 @@ public function test_it_throws_when_validating_invalid_php() $brewMock = Mockery::mock(Brew::class); - $brewMock->shouldReceive('supportedPhpVersions')->andReturn(collect(['php@7.4',])); + $brewMock->shouldReceive('supportedPhpVersions')->andReturn(collect(['php@7.4'])); $brewMock->shouldReceive('determineAliasedVersion')->andReturn('ERROR - NO BREW ALIAS FOUND'); swap(Brew::class, $brewMock); @@ -138,7 +138,7 @@ public function test_utilized_php_versions() ]; foreach ($sites as $site) { - $fileSystemMock->shouldReceive('get')->once()->with(VALET_HOME_PATH . '/Nginx/' . $site['site'])->andReturn($site['conf']); + $fileSystemMock->shouldReceive('get')->once()->with(VALET_HOME_PATH.'/Nginx/'.$site['site'])->andReturn($site['conf']); } swap(Filesystem::class, $fileSystemMock);