1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 16:10:08 +01:00

Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2022-03-21 05:25:37 +00:00
parent 29b2f45719
commit 94353bc940

View File

@@ -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);
@@ -434,7 +434,6 @@ public function test_isolate_will_throw_if_site_is_not_parked_or_linked()
resolve(PhpFpm::class)->isolateDirectory('test', 'php@8.1');
}
}
class StubForUpdatingFpmConfigFiles extends PhpFpm