Skip to content

Commit db7c817

Browse files
committed
Merge remote-tracking branch 'origin/php85' into php85
2 parents 6c43fc2 + d05e317 commit db7c817

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Support/MagicCall.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ final class MagicCall
1111
public function __call($name, $arguments)
1212
{
1313
$arguments = array_map(
14-
static fn($argument) => get_debug_type($argument),
14+
get_debug_type(...),
1515
$arguments,
1616
);
1717

tests/Support/Recorder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ final class Recorder
1212
public function __call($name, $arguments)
1313
{
1414
$arguments = array_map(
15-
static fn($argument) => get_debug_type($argument),
15+
get_debug_type(...),
1616
$arguments,
1717
);
1818

@@ -22,7 +22,7 @@ public function __call($name, $arguments)
2222
public static function __callStatic($name, $arguments)
2323
{
2424
$arguments = array_map(
25-
static fn($argument) => get_debug_type($argument),
25+
get_debug_type(...),
2626
$arguments,
2727
);
2828

0 commit comments

Comments
 (0)