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

Add type hints and return types to PhpFpm

This commit is contained in:
Matt Stauffer
2022-12-20 12:13:34 -05:00
parent 7698611a6a
commit ac4b8f6f40
2 changed files with 23 additions and 19 deletions

View File

@@ -448,7 +448,7 @@ public function test_isolate_will_throw_if_site_is_not_parked_or_linked()
class StubForUpdatingFpmConfigFiles extends PhpFpm
{
public function fpmConfigPath($phpVersion = null)
public function fpmConfigPath(?string $phpVersion = null): string
{
return __DIR__.'/output/fpm.conf';
}