Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.3
-
Fix Version/s: 2.3
-
Component/s: Annotations
-
Labels:None
-
Environment:apache2, php 5.4, mysql
Description
use Zend\Form\Annotation;
[...]
works:
- @Annotation\Options(
{"label":Namespace\Entity::LABEL}
)
or - @Annotation\Options(
{"label":Namespace\Entity::_LABEL}
)
or - @Annotation\Options(
{"label":Namespace\Entity::LA_BEL}
)
works not:
- @Annotation\Options(
{"label":Namespace\Entity::LABEL_}
)
Error message:
/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationException.php:52
[Semantical Error] Couldn't find constant Namespace\Entity\::LABEL, property ...
The _ at the end is missing.