ClassWithAnnotationWithTargetSyntaxError.php

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

File

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

namespace Doctrine\Tests\Common\Annotations\Fixtures;

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

/**
 * @AnnotationWithTargetSyntaxError()
 */
class ClassWithAnnotationWithTargetSyntaxError {

  /**
   * @AnnotationWithTargetSyntaxError()
   */
  public $foo;

  /**
   * @AnnotationWithTargetSyntaxError()
   */
  public function bar() {
  }

}

Classes

Namesort descending Description
ClassWithAnnotationWithTargetSyntaxError Plugin annotation @AnnotationWithTargetSyntaxError();