Attribute.php
Same filename in this branch
- 11.1.x vendor/phpstan/phpdoc-parser/src/Ast/Attribute.php
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Attribute.php
- 11.1.x vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Attribute.php
- 11.1.x vendor/mck89/peast/lib/Peast/Selector/Node/Part/Attribute.php
- 11.1.x core/lib/Drupal/Core/Template/Attribute.php
Namespace
Doctrine\Common\Annotations\AnnotationFile
-
vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ Annotation/ Attribute.php
View source
<?php
namespace Doctrine\Common\Annotations\Annotation;
/**
* Annotation that can be used to signal to the parser
* to check the attribute type during the parsing process.
*
* @Annotation
*/
final class Attribute {
/** @var string */
public $name;
/** @var string */
public $type;
/** @var bool */
public $required = false;
}
Classes
Title | Deprecated | Summary |
---|---|---|
Attribute | Annotation that can be used to signal to the parser to check the attribute type during the parsing process. |