Enum.php 732 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * The interface that all hash implementations must implement
  4. *
  5. * PHP version 5.3
  6. *
  7. * @category PHPSecurityLib
  8. * @package Hash
  9. * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
  10. * @copyright 2011 The Authors
  11. * @license http://opensource.org/licenses/bsd-license.php New BSD License
  12. * @license http://www.gnu.org/licenses/lgpl-2.1.html LGPL v 2.1
  13. */
  14. namespace SecurityLibTest\Mocks;
  15. /**
  16. * The interface that all hash implementations must implement
  17. *
  18. * @category PHPSecurityLib
  19. * @package Hash
  20. * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
  21. */
  22. class Enum extends \SecurityLib\Enum {
  23. const Value1 = 1;
  24. const Value2 = 2;
  25. const Value3 = 3;
  26. const Value4 = 4;
  27. }