From 1d5191b94d6794e4e0945402cfc044fadd424c19 Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Thu, 31 Mar 2022 15:31:38 +0200 Subject: Remove use of mixed type which is not available in PHP 7.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/dav/tests/integration') diff --git a/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php b/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php index cf0b24e9a69..8c23a30e879 100644 --- a/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php +++ b/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, )), ); } -- cgit v1.2.3