Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-31 16:31:38 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-05-02 11:52:37 +0300
commit1d5191b94d6794e4e0945402cfc044fadd424c19 (patch)
tree6735e1ec1a4ef18d7e5c7b8df1b766ebebdf8097 /apps
parent459202d54cf891298099c3f793d2b163b9b76541 (diff)
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')
-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,
)),
);
}