Neos\Flow\ObjectManagement\Proxy\ProxyMethod::willBeRendered PHP Метод

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

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