You are here

public function PHPUnit_Framework_MockObject_Builder_ParametersMatch::withAnyParameters in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php \PHPUnit_Framework_MockObject_Builder_ParametersMatch::withAnyParameters()

Sets a matcher which allows any kind of parameters.

Some examples: <code> // match any number of parameters $b->withAnyParamers(); </code>

Return value

PHPUnit_Framework_MockObject_Matcher_AnyParameters

1 method overrides PHPUnit_Framework_MockObject_Builder_ParametersMatch::withAnyParameters()
PHPUnit_Framework_MockObject_Builder_InvocationMocker::withAnyParameters in vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/InvocationMocker.php

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php, line 48

Class

PHPUnit_Framework_MockObject_Builder_ParametersMatch
Builder interface for parameter matchers.

Code

public function withAnyParameters();