Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: namespace PHPUnit\Framework\MockObject\Matcher; Chris@14: Chris@14: /** Chris@14: * Invocation matcher which checks if a method has been invoked zero or more Chris@14: * times. This matcher will always match. Chris@14: */ Chris@14: class AnyInvokedCount extends InvokedRecorder Chris@14: { Chris@14: /** Chris@14: * @return string Chris@14: */ Chris@14: public function toString() Chris@14: { Chris@14: return 'invoked zero or more times'; Chris@14: } Chris@14: Chris@14: public function verify() Chris@14: { Chris@14: } Chris@14: }