Phan\Language\Scope\GlobalScope::withVariable PHP Method

withVariable() public method

public withVariable ( Variable $variable ) : Scope
$variable Phan\Language\Element\Variable A variable to add to the local scope
return Phan\Language\Scope
    public function withVariable(Variable $variable) : Scope
    {
        $this->addVariable($variable);
        return $this;
    }