You are here

public function PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount::toString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php \PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount::toString()

Return value

string

Overrides PHPUnit_Framework_SelfDescribing::toString

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php, line 22

Class

PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount
Invocation matcher which checks if a method has been invoked zero or more times. This matcher will always match.

Code

public function toString() {
  return 'invoked zero or more times';
}