Bluz\Common\Helper::setHelpersPath PHP Method

setHelpersPath() public method

Set helpers path
public setHelpersPath ( string | array $helpersPath ) : self
$helpersPath string | array
return self
    public function setHelpersPath($helpersPath)
    {
        if (is_array($helpersPath)) {
            foreach ($helpersPath as $path) {
                $this->addHelperPath((string) $path);
            }
        } else {
            $this->addHelperPath((string) $helpersPath);
        }
        return $this;
    }