SampleStrEnum.php 447 B

1234567891011121314151617181920212223242526
  1. <?php declare(strict_types=1);
  2. /**
  3. * This file is part of toolkit/stdlib.
  4. *
  5. * @author https://github.com/inhere
  6. * @link https://github.com/php-toolkit/stdlib
  7. * @license MIT
  8. */
  9. namespace Toolkit\StdlibTest\Cases;
  10. use Toolkit\Stdlib\Std\BaseEnum;
  11. /**
  12. * class SimpleEnum
  13. *
  14. * @author inhere
  15. */
  16. class SampleStrEnum extends BaseEnum
  17. {
  18. public const ADD = 'add';
  19. public const VIEW = 'view';
  20. public const EDIT = 'edit';
  21. }