final class AnnotationWithVarType

Plugin annotation

@Target("ALL");

Hierarchy

Expanded class hierarchy of AnnotationWithVarType

1 file declares its use of AnnotationWithVarType
ClassWithAnnotationWithVarType.php in drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithAnnotationWithVarType.php
2 classes are annotated with AnnotationWithVarType
ClassWithAnnotationWithVarType::bar in drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithAnnotationWithVarType.php
Plugin annotation @AnnotationWithVarType(annotation = @AnnotationTargetAll)
ClassWithAnnotationWithVarType::invalidMethod in drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithAnnotationWithVarType.php
Plugin annotation @AnnotationWithVarType(annotation = @AnnotationTargetAnnotation)

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationWithVarType.php, line 9

Namespace

Doctrine\Tests\Common\Annotations\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 Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll
   */
  public $annotation;

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

  /**
   * @var array<Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll>
   */
  public $arrayOfAnnotations;

}

Members