We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a88902 commit 75db5a5Copy full SHA for 75db5a5
extractor/extract.php
@@ -591,8 +591,8 @@ private function compareFunctions(Node\FunctionLike $old, Node\FunctionLike $new
591
} elseif ($oldArg->name !== null || $newArg->name !== null) {
592
return $this->stmtDiff($old, $new, $updateTo);
593
}
594
- $oldArgValue = $this->printer->prettyPrintExpr($oldArg->expr);
595
- $newArgValue = $this->printer->prettyPrintExpr($newArg->expr);
+ $oldArgValue = $this->printer->prettyPrintExpr($oldArg->value);
+ $newArgValue = $this->printer->prettyPrintExpr($newArg->value);
596
if ($oldArgValue !== $newArgValue) {
597
598
0 commit comments