You are here

class UnexpectedCallException in Zircon Profile 8

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

Hierarchy

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