public static function AnnotationException::enumeratorError in Plug 7
Creates a new AnnotationException describing a invalid enummerator.
@since 2.4
Parameters
string $attributeName:
string $annotationName:
string $context:
array $available:
mixed $given:
Return value
1 call to AnnotationException::enumeratorError()
- DocParser::Annotation in lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ DocParser.php - Annotation ::= "@" AnnotationName MethodCall AnnotationName ::= QualifiedName | SimpleName QualifiedName ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName NameSpacePart ::= identifier | null | false |…
File
- lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationException.php, line 166
Class
- AnnotationException
- Description of AnnotationException
Namespace
Doctrine\Common\AnnotationsCode
public static function enumeratorError($attributeName, $annotationName, $context, $available, $given) {
return new self(sprintf('[Enum Error] Attribute "%s" of @%s declared on %s accept only [%s], but got %s.', $attributeName, $annotationName, $context, implode(', ', $available), is_object($given) ? get_class($given) : $given));
}