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

Fix styleci & drop typehint for php5.6 compatibility

This commit is contained in:
Cristian Calara
2022-01-08 11:05:41 +02:00
parent 9e3a89c742
commit 70335bade8
2 changed files with 5 additions and 6 deletions

View File

@@ -348,7 +348,6 @@ public function test_getAllRunningServices_will_return_both_root_and_user_servic
], array_values($result->all()));
}
public function test_getAllRunningServices_will_return_unique_services()
{
$cli = Mockery::mock(CommandLine::class);
@@ -361,7 +360,7 @@ public function test_getAllRunningServices_will_return_unique_services()
'service1',
'service2',
'service3',
'service4'
'service4',
], array_values($result->all()));
}