1<?php
2/*
3 * This file is part of the PHPUnit_MockObject 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/**
12 * Invocation matcher which checks if a method has been invoked zero or more
13 * times. This matcher will always match.
14 *
15 * @since Class available since Release 1.0.0
16 */
17class PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount extends PHPUnit_Framework_MockObject_Matcher_InvokedRecorder
18{
19    /**
20     * @return string
21     */
22    public function toString()
23    {
24        return 'invoked zero or more times';
25    }
26
27    /**
28     */
29    public function verify()
30    {
31    }
32}
33