You are here

final class AnnotationWithVarType in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithVarType.php \Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationWithVarType

Plugin annotation

@Target("ALL");

Hierarchy

Expanded class hierarchy of AnnotationWithVarType

Related topics

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithVarType.php, line 9

Namespace

Drupal\Tests\Component\Annotation\Doctrine\Fixtures
View source
final class AnnotationWithVarType {

  /**
   * @var mixed
   */
  public $mixed;

  /**
   * @var boolean
   */
  public $boolean;

  /**
   * @var bool
   */
  public $bool;

  /**
   * @var float
   */
  public $float;

  /**
   * @var string
   */
  public $string;

  /**
   * @var integer
   */
  public $integer;

  /**
   * @var array
   */
  public $array;

  /**
   * @var Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll
   */
  public $annotation;

  /**
   * @var array<integer>
   */
  public $arrayOfIntegers;

  /**
   * @var string[]
   */
  public $arrayOfStrings;

  /**
   * @var array<Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetAll>
   */
  public $arrayOfAnnotations;

}

Members