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 !== '';
    }