class AnnotationWithAttributes

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithAttributes.php \Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationWithAttributes
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithAttributes.php \Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationWithAttributes
  3. 10 core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithAttributes.php \Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationWithAttributes

Plugin annotation


@Target("ALL")
@Attributes({
      @Attribute("mixed",                type = "mixed"),
      @Attribute("boolean",              type = "boolean"),
      @Attribute("bool",                 type = "bool"),
      @Attribute("float",                type = "float"),
      @Attribute("string",               type = "string"),
      @Attribute("integer",              type = "integer"),
      @Attribute("array",                type = "array"),
      @Attribute("arrayOfIntegers",      type = "array<integer>"),
      @Attribute("arrayOfStrings",       type = "string[]"),
      @Attribute("annotation",           type = "Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll"),
      @Attribute("arrayOfAnnotations",   type = "array<Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll>"),
  })

Hierarchy

Expanded class hierarchy of AnnotationWithAttributes

Related topics

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithAttributes.php, line 24

Namespace

Drupal\Tests\Component\Annotation\Doctrine\Fixtures
View source
final class AnnotationWithAttributes {
    public final function __construct(array $data) {
        foreach ($data as $key => $value) {
            $this->{$key} = $value;
        }
    }
    private $mixed;
    private $boolean;
    private $bool;
    private $float;
    private $string;
    private $integer;
    private $array;
    private $annotation;
    private $arrayOfIntegers;
    private $arrayOfStrings;
    private $arrayOfAnnotations;
    
    /**
     * @return mixed
     */
    public function getMixed() {
        return $this->mixed;
    }
    
    /**
     * @return boolean
     */
    public function getBoolean() {
        return $this->boolean;
    }
    
    /**
     * @return bool
     */
    public function getBool() {
        return $this->bool;
    }
    
    /**
     * @return float
     */
    public function getFloat() {
        return $this->float;
    }
    
    /**
     * @return string
     */
    public function getString() {
        return $this->string;
    }
    public function getInteger() {
        return $this->integer;
    }
    
    /**
     * @return array
     */
    public function getArray() {
        return $this->array;
    }
    
    /**
     * @return Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll
     */
    public function getAnnotation() {
        return $this->annotation;
    }
    
    /**
     * @return string[]
     */
    public function getArrayOfStrings() {
        return $this->arrayOfIntegers;
    }
    
    /**
     * @return array<integer>
     */
    public function getArrayOfIntegers() {
        return $this->arrayOfIntegers;
    }
    
    /**
     * @return array<Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll>
     */
    public function getArrayOfAnnotations() {
        return $this->arrayOfAnnotations;
    }

}

Members


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.