You are here

public function ReturnByReferenceException::__construct in Zircon Profile 8.0

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

Parameters

string $message:

string $classname:

string $methodName:

File

vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php, line 24

Class

ReturnByReferenceException

Namespace

Prophecy\Exception\Doubler

Code

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