Airship\Engine\Lens::addGlobal PHP Method

addGlobal() public method

Add a global variable to Twig
public addGlobal ( string $key, &mixed $value ) : self
$key string
$value &mixed
return self
    public function addGlobal(string $key, $value) : self
    {
        $this->twigEnv->addGlobal($key, $value);
        return $this;
    }