CeesVanEgmond\Minify\Minify::stylesheetDir PHP Метод

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

public stylesheetDir ( $dir, array $attributes = [] ) : string
$dir
$attributes array
Результат string
    public function stylesheetDir($dir, $attributes = array())
    {
        $this->provider = new StyleSheet(public_path());
        $this->buildPath = $this->config['css_build_path'];
        $this->attributes = $attributes;
        return $this->assetDirHelper('css', $dir);
    }

Usage Example

Пример #1
0
 /**
  * 
  *
  * @param $dir
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function stylesheetDir($dir, $attributes = array())
 {
     return \CeesVanEgmond\Minify\Minify::stylesheetDir($dir, $attributes);
 }