ClassWithInvalidAnnotationTargetAtProperty.php

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

File

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

namespace Doctrine\Tests\Common\Annotations\Fixtures;

use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetClass;
use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAnnotation;

/**
 * @AnnotationTargetClass("Some data")
 */
class ClassWithInvalidAnnotationTargetAtProperty {

  /**
   * @AnnotationTargetClass("Bar")
   */
  public $foo;

  /**
   * @AnnotationTargetAnnotation("Foo")
   */
  public $bar;

}

Classes

Namesort descending Description
ClassWithInvalidAnnotationTargetAtProperty Plugin annotation @AnnotationTargetClass("Some data");