diff --git a/src/ReflectionTools.php b/src/ReflectionTools.php index 3bcd85b..fede011 100644 --- a/src/ReflectionTools.php +++ b/src/ReflectionTools.php @@ -221,7 +221,6 @@ private function exportFunctionParameters(ReflectionFunctionAbstract $function) if ($parameter->isDefaultValueAvailable()) { if ($parameter->isDefaultValueConstant()) { - /** @psalm-suppress PossiblyNullOperand https://github.com/vimeo/psalm/pull/9115 */ $result .= ' = ' . '\\' . $parameter->getDefaultValueConstantName(); } else { $result .= ' = ' . VarExporter::export($parameter->getDefaultValue(), VarExporter::INLINE_ARRAY);