Lime\Helper\Assets::style_and_script PHP Method

style_and_script() public method

Echo tags for scripts and styles
public style_and_script ( Array $assets, String $name, String $path = "", Float $cache, boolean $version = false ) : void
$assets Array
$name String
$path String
$cache Float
$version boolean
return void
    public function style_and_script($assets, $name, $path = "", $cache = 0, $version = false)
    {
        echo $this->script($assets, $name, $path, $cache, $version);
        echo $this->style($assets, $name, $path, $cache, $version);
    }