Phan\Language\Scope::addGlobalVariable PHP Method

addGlobalVariable() public method

public addGlobalVariable ( Variable $variable ) : void
$variable Phan\Language\Element\Variable A variable to add to the set of global variables
return void
    public function addGlobalVariable(Variable $variable)
    {
        assert($this->hasParentScope(), "No global scope available. This should not happen.");
        $this->getParentScope()->addGlobalVariable($variable);
    }