function UnexpectedCallException::__construct
Parameters
string $message:
ObjectProphecy<object> $objectProphecy:
string $methodName:
array<mixed> $arguments:
Overrides ObjectProphecyException::__construct
File
-
vendor/
phpspec/ prophecy/ src/ Prophecy/ Exception/ Call/ UnexpectedCallException.php, line 28
Class
Namespace
Prophecy\Exception\CallCode
public function __construct($message, ObjectProphecy $objectProphecy, $methodName, array $arguments) {
parent::__construct($message, $objectProphecy);
$this->methodName = $methodName;
$this->arguments = $arguments;
}