Chris@0: . Chris@0: */ Chris@0: Chris@0: namespace Doctrine\Common\Annotations\Annotation; Chris@0: Chris@0: /** Chris@0: * Annotation that can be used to signal to the parser Chris@0: * to check the attribute type during the parsing process. Chris@0: * Chris@0: * @author Fabio B. Silva Chris@0: * Chris@0: * @Annotation Chris@0: */ Chris@0: final class Attribute Chris@0: { Chris@0: /** Chris@0: * @var string Chris@0: */ Chris@0: public $name; Chris@0: Chris@0: /** Chris@0: * @var string Chris@0: */ Chris@0: public $type; Chris@0: Chris@0: /** Chris@0: * @var boolean Chris@0: */ Chris@0: public $required = false; Chris@0: }