ClassWithInvalidAnnotationTargetAtMethod.php

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

File

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

namespace Doctrine\Tests\Common\Annotations\Fixtures;

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

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

  /**
   * @AnnotationTargetClass("functionName")
   */
  public function functionName($param) {
  }

}

Classes

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