Phan\Language\Element\TypedElement::hydrate PHP Method

hydrate() final public method

This method must be called before analysis begins.
final public hydrate ( CodeBase $code_base ) : void
$code_base Phan\CodeBase
return void
    public final function hydrate(CodeBase $code_base)
    {
        if (!$this->isFirstExecution(__METHOD__)) {
            return;
        }
        $this->hydrateOnce($code_base);
    }