AnnotationWithConstants.php in Drupal 10
File
core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationWithConstants.phpView source
<?php
namespace Drupal\Tests\Component\Annotation\Doctrine\Fixtures;
/**
* @Annotation
* @Target("ALL")
*/
final class AnnotationWithConstants {
const INTEGER = 1;
const FLOAT = 1.2;
const STRING = '1.2.3';
/**
* @var mixed
*/
public $value;
}
Classes
Name | Description |
---|---|
AnnotationWithConstants | Plugin annotation @Target("ALL"); |