You are here

class ClassWithConstants in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/ClassWithConstants.php \Drupal\Tests\Component\Annotation\Doctrine\Fixtures\ClassWithConstants

Hierarchy

Expanded class hierarchy of ClassWithConstants

1 file declares its use of ClassWithConstants
DocParserTest.php in core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/ClassWithConstants.php, line 5

Namespace

Drupal\Tests\Component\Annotation\Doctrine\Fixtures
View source
class ClassWithConstants {
  const SOME_VALUE = 'ClassWithConstants.SOME_VALUE';
  const SOME_KEY = 'ClassWithConstants.SOME_KEY';
  const OTHER_KEY_ = 'ClassWithConstants.OTHER_KEY_';
  const OTHER_KEY_2 = 'ClassWithConstants.OTHER_KEY_2';

}

Members