fix tests

This commit is contained in:
Dennis Eichhorn 2024-04-25 15:28:40 +00:00
parent 12a6fe0a7c
commit 26fe6f59a6

View File

@ -202,7 +202,7 @@ final class BackendController extends Controller
->limit(100)
->executeGetArray();
/** @var array{type:string, inspection:\Modules\FleetManagement\Models\Inspection} */
/** @var array<int, array{type:string, inspection:\Modules\FleetManagement\Models\Inspection}> */
$inspections = [];
foreach ($vehicles as $inspection) {
$inspections[] = ['type' => 'vehicle', 'inspection' => $inspection];