You are here

public function MethodNotFoundException::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php \Prophecy\Exception\Doubler\MethodNotFoundException::__construct()

Parameters

string $message:

string $classname:

string $methodName:

null|Argument\ArgumentsWildcard|array $arguments:

File

vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php, line 37

Class

MethodNotFoundException

Namespace

Prophecy\Exception\Doubler

Code

public function __construct($message, $classname, $methodName, $arguments = null) {
  parent::__construct($message);
  $this->classname = $classname;
  $this->methodName = $methodName;
  $this->arguments = $arguments;
}