8000
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 52abcbe commit c349d5fCopy full SHA for c349d5f
src/Symfony/Component/Config/Resource/ReflectionClassResource.php
@@ -139,7 +139,7 @@ private function generateSignature(\ReflectionClass $class)
139
$defaults = $class->getDefaultProperties();
140
141
foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED) as $p) {
142
- yield $p->getDocComment().$p;
+ yield $p->getDocComment().$p->name;
143
yield print_r(isset($defaults[$p->name]) && !\is_object($defaults[$p->name]) ? $defaults[$p->name] : null, true);
144
}
145
0 commit comments