Remove use of mixed type which is not available in PHP 7.4

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-03-31 15:31:38 +02:00
parent 459202d54c
commit 1d5191b94d
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class CalendarMigratorTest extends TestCase {
fn (VObjectProperty $property) => $property->serialize(),
array_values(array_filter(
$vCalendar->children(),
fn (mixed $child) => $child instanceof VObjectProperty,
fn ($child) => $child instanceof VObjectProperty,
)),
);
}