diff --git a/lib/PhpParser/PrettyPrinterAbstract.php b/lib/PhpParser/PrettyPrinterAbstract.php index 97927bb..1dc38e4 100644 --- a/lib/PhpParser/PrettyPrinterAbstract.php +++ b/lib/PhpParser/PrettyPrinterAbstract.php @@ -489,7 +489,7 @@ abstract class PrettyPrinterAbstract $indentAdjustment = $this->indentLevel - $this->getIndentationBefore($startPos); $type = $node->getType(); - $fixupInfo = isset($this->fixupMap[$type]) ? $this->fixupMap[$type] : null; + $fixupInfo = $this->fixupMap[$type] ?? null; $result = ''; $pos = $startPos;