Neos\Flow\ObjectManagement\Proxy\ProxyMethod::willBeRendered PHP Méthode

willBeRendered() public méthode

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