You are here

ClassWithInvalidAnnotationTargetAtClass.php in Drupal 9

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/ClassWithInvalidAnnotationTargetAtClass.php
View source
<?php

namespace Drupal\Tests\Component\Annotation\Doctrine\Fixtures;

use Drupal\Tests\Component\Annotation\Doctrine\Fixtures\AnnotationTargetPropertyMethod;

/**
 * @AnnotationTargetPropertyMethod("Some data")
 */
class ClassWithInvalidAnnotationTargetAtClass {

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

}

Classes

Namesort descending Description
ClassWithInvalidAnnotationTargetAtClass Plugin annotation @AnnotationTargetPropertyMethod("Some data");