mirror of
https://github.com/nextcloud/server.git
synced 2026-03-23 02:43:21 -04:00
Remove use of mixed type which is not available in PHP 7.4
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
459202d54c
commit
1d5191b94d
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue