Neos\Flow\ObjectManagement\Proxy\ProxyMethod::willBeRendered PHP Method

willBeRendered() public method

Tells if enough code was provided (yet) so that this method would actually be rendered if render() is called.
public willBeRendered ( ) : boolean
return boolean TRUE if there is any code to render, otherwise FALSE
    public function willBeRendered()
    {
        return $this->addedPreParentCallCode !== '' || $this->addedPostParentCallCode !== '';
    }