Skip to content

Commit 1d5191b

Browse files
committed
Remove use of mixed type which is not available in PHP 7.4
Signed-off-by: Côme Chilliet <[email protected]>
1 parent 459202d commit 1d5191b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private function getProperties(VCalendar $vCalendar): array {
8585
fn (VObjectProperty $property) => $property->serialize(),
8686
array_values(array_filter(
8787
$vCalendar->children(),
88-
fn (mixed $child) => $child instanceof VObjectProperty,
88+
fn ($child) => $child instanceof VObjectProperty,
8989
)),
9090
);
9191
}

0 commit comments

Comments
 (0)