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 allows any parameters to a method.
13 *
14 * @since Class available since Release 1.0.0
15 */
16class PHPUnit_Framework_MockObject_Matcher_AnyParameters extends PHPUnit_Framework_MockObject_Matcher_StatelessInvocation
17{
18    /**
19     * @return string
20     */
21    public function toString()
22    {
23        return 'with any parameters';
24    }
25
26    /**
27     * @param PHPUnit_Framework_MockObject_Invocation $invocation
28     *
29     * @return bool
30     */
31    public function matches(PHPUnit_Framework_MockObject_Invocation $invocation)
32    {
33        return true;
34    }
35}
36