AnyInvokedCount.php 673 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of the phpunit-mock-objects package.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Invocation matcher which checks if a method has been invoked zero or more
  12. * times. This matcher will always match.
  13. */
  14. class PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount extends PHPUnit_Framework_MockObject_Matcher_InvokedRecorder
  15. {
  16. /**
  17. * @return string
  18. */
  19. public function toString()
  20. {
  21. return 'invoked zero or more times';
  22. }
  23. public function verify()
  24. {
  25. }
  26. }