summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/integration
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-31 15:31:38 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-05-02 10:52:37 +0200
commit1d5191b94d6794e4e0945402cfc044fadd424c19 (patch)
tree6735e1ec1a4ef18d7e5c7b8df1b766ebebdf8097 /apps/dav/tests/integration
parent459202d54cf891298099c3f793d2b163b9b76541 (diff)
downloadnextcloud-server-1d5191b94d6794e4e0945402cfc044fadd424c19.tar.gz
nextcloud-server-1d5191b94d6794e4e0945402cfc044fadd424c19.zip
Remove use of mixed type which is not available in PHP 7.4
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/dav/tests/integration')
-rw-r--r--apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php2
1 files changed, 1 insertions, 1 deletions
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,
)),
);
}