Bluz\Common\Helper::setHelpersPath PHP Метод

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

Set helpers path
public setHelpersPath ( string | array $helpersPath ) : self
$helpersPath string | array
Результат self
    public function setHelpersPath($helpersPath)
    {
        if (is_array($helpersPath)) {
            foreach ($helpersPath as $path) {
                $this->addHelperPath((string) $path);
            }
        } else {
            $this->addHelperPath((string) $helpersPath);
        }
        return $this;
    }