InterfaceWithConstants.php 233 B

123456789
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. interface InterfaceWithConstants
  4. {
  5. public const SOME_VALUE = 'InterfaceWithConstants.SOME_VALUE';
  6. public const SOME_KEY = 'InterfaceWithConstants.SOME_KEY';
  7. }