You are here

AnnotationTargetPropertyMethod.php in Drupal 9

File

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

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


/**
 * @Annotation
 * @Target({ "METHOD", "PROPERTY" })
 */
final class AnnotationTargetPropertyMethod {
  public $data;
  public $name;
  public $target;

}

Classes

Namesort descending Description
AnnotationTargetPropertyMethod Plugin annotation @Target({ "METHOD", "PROPERTY" })