diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-31 15:31:38 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-05-02 10:52:37 +0200 |
commit | 1d5191b94d6794e4e0945402cfc044fadd424c19 (patch) | |
tree | 6735e1ec1a4ef18d7e5c7b8df1b766ebebdf8097 /apps/dav/tests/integration | |
parent | 459202d54cf891298099c3f793d2b163b9b76541 (diff) | |
download | nextcloud-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.php | 2 |
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, )), ); } |