ClassWithConstants.php 348 B

1234567891011
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. class ClassWithConstants
  4. {
  5. public const SOME_VALUE = 'ClassWithConstants.SOME_VALUE';
  6. public const SOME_KEY = 'ClassWithConstants.SOME_KEY';
  7. public const OTHER_KEY_ = 'ClassWithConstants.OTHER_KEY_';
  8. public const OTHER_KEY_2 = 'ClassWithConstants.OTHER_KEY_2';
  9. }