public function Annotation::__get in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_annotation_discovery/lib/Doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php \Doctrine\Common\Annotations\Annotation::__get()
Error handler for unknown property accessor in Annotation class.
Parameters
string $name Unknown property name.:
Throws
\BadMethodCallException
File
- modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ Annotation.php, line 58
Class
- Annotation
- Annotations class.
Namespace
Doctrine\Common\AnnotationsCode
public function __get($name) {
throw new \BadMethodCallException(sprintf("Unknown property '%s' on annotation '%s'.", $name, get_class($this)));
}