You are here

AnnotationEnumInvalid.php in Drupal 9

File

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

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


/**
 * @Annotation
 * @Target("ALL")
 */
final class AnnotationEnumInvalid {

  /**
   * @var mixed
   *
   * @Enum({1, 2, "foo", "bar", {"foo":"bar"}})
   */
  public $value;

}

Classes

Namesort descending Description
AnnotationEnumInvalid Plugin annotation @Target("ALL");