Eloquent\Phony\Mock\Method\WrappedParentMethod::__construct PHP Method

__construct() public method

Construct a new wrapped parent method.
public __construct ( ReflectionMethod $callParentMethod, ReflectionMethod $method, Eloquent\Phony\Mock\Handle\Handle $handle )
$callParentMethod ReflectionMethod The _callParent() method.
$method ReflectionMethod The method.
$handle Eloquent\Phony\Mock\Handle\Handle The handle.
    public function __construct(ReflectionMethod $callParentMethod, ReflectionMethod $method, Handle $handle)
    {
        $this->callParentMethod = $callParentMethod;
        parent::__construct($method, $handle);
    }