AnnotationTargetAnnotation.php

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationTargetAnnotation.php
View source
<?php

namespace Doctrine\Tests\Common\Annotations\Fixtures;


/**
 * @Annotation
 * @Target({ "ANNOTATION" })
 */
final class AnnotationTargetAnnotation {
  public $data;
  public $name;
  public $target;

}

Classes

Namesort descending Description
AnnotationTargetAnnotation Plugin annotation @Target({ "ANNOTATION" })