Neos\Flow\Mvc\RequestMatcher::getParentRequest PHP Method

getParentRequest() public method

Get a new RequestMatcher for the Request's ParentRequest
public getParentRequest ( ) : RequestMatcher
return RequestMatcher
    public function getParentRequest()
    {
        if ($this->request === null || $this->request->isMainRequest()) {
            return new RequestMatcher();
        }
        $this->addWeight(1000000);
        return new RequestMatcher($this->request->getParentRequest(), $this);
    }