ManaPHP\Mvc\View::setVar PHP Method

setVar() public method

$this->view->setVar('products', $products);
public setVar ( string $name, mixed $value ) : static
$name string
$value mixed
return static
    public function setVar($name, $value)
    {
        $this->_viewVars[$name] = $value;
        return $this;
    }