Phan\Language\Scope\GlobalScope::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)
    {
        $this->addVariable($variable);
    }