Inheritance: implements DMS\Filter\Mapping\ClassMetadataInterface
Beispiel #1
0
 /**
  * Checks if the object has interfaces and cascades parsing of annotatiosn
  * to all the interfaces
  * 
  * @param ClassMetadata $metadata 
  */
 protected function loadInterfaceMetadata($metadata)
 {
     foreach ($metadata->getReflectionClass()->getInterfaces() as $interface) {
         $metadata->mergeRules($this->getClassMetadata($interface->getName()));
     }
 }