class UnexpectedCallException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php \Prophecy\Exception\Call\UnexpectedCallException
Hierarchy
- class \Prophecy\Exception\Prophecy\ObjectProphecyException extends \Prophecy\Exception\Prophecy\RuntimeException implements ProphecyException
- class \Prophecy\Exception\Call\UnexpectedCallException
Expanded class hierarchy of UnexpectedCallException
1 file declares its use of UnexpectedCallException
- CallCenter.php in vendor/
phpspec/ prophecy/ src/ Prophecy/ Call/ CallCenter.php
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Exception/ Call/ UnexpectedCallException.php, line 17
Namespace
Prophecy\Exception\CallView source
class UnexpectedCallException extends ObjectProphecyException {
private $methodName;
private $arguments;
public function __construct($message, ObjectProphecy $objectProphecy, $methodName, array $arguments) {
parent::__construct($message, $objectProphecy);
$this->methodName = $methodName;
$this->arguments = $arguments;
}
public function getMethodName() {
return $this->methodName;
}
public function getArguments() {
return $this->arguments;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Exception:: |
public | function | ||
ObjectProphecyException:: |
private | property | ||
ObjectProphecyException:: |
public | function | ||
UnexpectedCallException:: |
private | property | ||
UnexpectedCallException:: |
private | property | ||
UnexpectedCallException:: |
public | function | ||
UnexpectedCallException:: |
public | function | ||
UnexpectedCallException:: |
public | function |
Overrides ObjectProphecyException:: |