public function PHPUnit_Framework_MockObject_Matcher_AnyParameters::matches

Parameters

PHPUnit_Framework_MockObject_Invocation $invocation:

Return value

boolean

Overrides PHPUnit_Framework_MockObject_Matcher_Invocation::matches

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Matcher/AnyParameters.php, line 70

Class

PHPUnit_Framework_MockObject_Matcher_AnyParameters
Invocation matcher which allos any parameters to a method.

Code

public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) {
  return TRUE;
}