Pagekit\View\View::addHelpers PHP Method

addHelpers() public method

Adds multiple view helpers.
public addHelpers ( array $helpers ) : self
$helpers array
return self
    public function addHelpers(array $helpers)
    {
        foreach ($helpers as $helper) {
            $this->addHelper($helper);
        }
        return $this;
    }