Eloquent\Phony\Mock\Exception\UndefinedMethodStubException::__construct PHP Метод

__construct() публичный Метод

Construct a new undefined method stub exception.
public __construct ( string $className, string $name )
$className string The class name.
$name string The method name.
    public function __construct($className, $name)
    {
        $this->className = $className;
        $this->name = $name;
        parent::__construct(sprintf('The requested method stub %s::%s() does not exist.', $className, $name));
    }
UndefinedMethodStubException