class MethodNotFoundException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php \Prophecy\Exception\Doubler\MethodNotFoundException
Hierarchy
- class \Prophecy\Exception\Doubler\DoubleException extends \RuntimeException implements DoublerException
- class \Prophecy\Exception\Doubler\MethodNotFoundException
Expanded class hierarchy of MethodNotFoundException
1 file declares its use of MethodNotFoundException
- MethodProphecy.php in vendor/
phpspec/ prophecy/ src/ Prophecy/ Prophecy/ MethodProphecy.php
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Exception/ Doubler/ MethodNotFoundException.php, line 14
Namespace
Prophecy\Exception\DoublerView source
class MethodNotFoundException extends DoubleException {
/**
* @var string
*/
private $classname;
/**
* @var string
*/
private $methodName;
/**
* @var array
*/
private $arguments;
/**
* @param string $message
* @param string $classname
* @param string $methodName
* @param null|Argument\ArgumentsWildcard|array $arguments
*/
public function __construct($message, $classname, $methodName, $arguments = null) {
parent::__construct($message);
$this->classname = $classname;
$this->methodName = $methodName;
$this->arguments = $arguments;
}
public function getClassname() {
return $this->classname;
}
public function getMethodName() {
return $this->methodName;
}
public function getArguments() {
return $this->arguments;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Exception:: |
public | function | ||
MethodNotFoundException:: |
private | property | ||
MethodNotFoundException:: |
private | property | ||
MethodNotFoundException:: |
private | property | ||
MethodNotFoundException:: |
public | function | ||
MethodNotFoundException:: |
public | function | ||
MethodNotFoundException:: |
public | function | ||
MethodNotFoundException:: |
public | function |