You are here

class UnexpectedCallsException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php \Prophecy\Exception\Prediction\UnexpectedCallsException

Hierarchy

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\Prediction
View 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