Neos\Flow\Mvc\View\AbstractView::assignMultiple PHP Метод

assignMultiple() публичный Метод

Add multiple variables to $this->variables.
public assignMultiple ( array $values ) : AbstractView
$values array array in the format array(key1 => value1, key2 => value2)
Результат AbstractView an instance of $this, to enable chaining
    public function assignMultiple(array $values)
    {
        foreach ($values as $key => $value) {
            $this->assign($key, $value);
        }
        return $this;
    }