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

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/31775/head
Côme Chilliet 4 years ago
parent 459202d54c
commit 1d5191b94d
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
  1. 2
      apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php

@ -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,
)),
);
}

Loading…
Cancel
Save