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 ce82f5b commit 4784977Copy full SHA for 4784977
Mapping/Factory/ClassMetadataFactory.php
@@ -86,12 +86,12 @@ public function getMetadataFor($value)
86
87
$reflClass = $metadata->getReflectionClass();
88
89
- // Include constraints from the parent class
+ // Include groups from the parent class
90
if ($parent = $reflClass->getParentClass()) {
91
$metadata->mergeAttributesGroups($this->getMetadataFor($parent->name));
92
}
93
94
- // Include constraints from all implemented interfaces
+ // Include groups from all implemented interfaces
95
foreach ($reflClass->getInterfaces() as $interface) {
96
$metadata->mergeAttributesGroups($this->getMetadataFor($interface->name));
97
0 commit comments