AssertionFailedException.php 516 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Assert
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * If you did not receive a copy of the license and are unable to
  10. * obtain it through the world-wide-web, please send an email
  11. * to kontakt@beberlei.de so I can send you a copy immediately.
  12. */
  13. namespace Assert;
  14. interface AssertionFailedException
  15. {
  16. public function getPropertyPath();
  17. public function getValue();
  18. public function getConstraints();
  19. }