public function ObjectProphecy::getMethodProphecies in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php \Prophecy\Prophecy\ObjectProphecy::getMethodProphecies()
Returns either all or related to single method prophecies.
Parameters
null|string $methodName:
Return value
1 call to ObjectProphecy::getMethodProphecies()
- ObjectProphecy::__call in vendor/
phpspec/ prophecy/ src/ Prophecy/ Prophecy/ ObjectProphecy.php - Creates new method prophecy using specified method name and arguments.
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Prophecy/ ObjectProphecy.php, line 165
Class
- ObjectProphecy
- Object prophecy.
Namespace
Prophecy\ProphecyCode
public function getMethodProphecies($methodName = null) {
if (null === $methodName) {
return $this->methodProphecies;
}
if (!isset($this->methodProphecies[$methodName])) {
return array();
}
return $this->methodProphecies[$methodName];
}