ClassWithValidAnnotationTarget.php

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

File

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

namespace Doctrine\Tests\Common\Annotations\Fixtures;

use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetClass;
use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll;
use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetPropertyMethod;
use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetNestedAnnotation;

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

  /**
   * @AnnotationTargetPropertyMethod("Some data")
   */
  public $foo;

  /**
   * @AnnotationTargetAll("Some data",name="Some name")
   */
  public $name;

  /**
   * @AnnotationTargetPropertyMethod("Some data",name="Some name")
   */
  public function someFunction() {
  }

  /**
   * @AnnotationTargetAll(@AnnotationTargetAnnotation)
   */
  public $nested;

}

Classes

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