class UnexpectedCallsException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php \Prophecy\Exception\Prediction\UnexpectedCallsException
Hierarchy
- class \Prophecy\Exception\Prophecy\ObjectProphecyException extends \Prophecy\Exception\Prophecy\RuntimeException implements ProphecyException
- class \Prophecy\Exception\Prophecy\MethodProphecyException
- class \Prophecy\Exception\Prediction\UnexpectedCallsException implements PredictionException
- class \Prophecy\Exception\Prophecy\MethodProphecyException
Expanded class hierarchy of UnexpectedCallsException
1 file declares its use of UnexpectedCallsException
- NoCallsPrediction.php in vendor/
phpspec/ prophecy/ src/ Prophecy/ Prediction/ NoCallsPrediction.php
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Exception/ Prediction/ UnexpectedCallsException.php, line 17
Namespace
Prophecy\Exception\PredictionView source
class UnexpectedCallsException extends MethodProphecyException implements PredictionException {
private $calls = array();
public function __construct($message, MethodProphecy $methodProphecy, array $calls) {
parent::__construct($message, $methodProphecy);
$this->calls = $calls;
}
public function getCalls() {
return $this->calls;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Exception:: |
public | function | ||
MethodProphecyException:: |
private | property | ||
MethodProphecyException:: |
public | function | ||
ObjectProphecyException:: |
private | property | ||
ObjectProphecyException:: |
public | function | ||
UnexpectedCallsException:: |
private | property | ||
UnexpectedCallsException:: |
public | function | ||
UnexpectedCallsException:: |
public | function |
Overrides MethodProphecyException:: |
1 |