Skip to content

Commit 91307e3

Browse files
committed
Fix previous erroneous assignment.
1 parent 1c6203a commit 91307e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DocBlock/Tags/InvalidTag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ static function (&$value) : void {
104104
do {
105105
$trace = array_map(
106106
static function (array $call) use ($flatten) : array {
107-
$args = $call['args'] ?? [];
107+
$call['args'] = $call['args'] ?? [];
108108

109-
array_walk_recursive($args, $flatten);
109+
array_walk_recursive($call['args'], $flatten);
110110

111111
return $call;
112112
},

0 commit comments

Comments
 (0)