MiniAsset\AssetTarget::__construct PHP Method

__construct() public method

public __construct ( string $path, array $files = [], array $filters = [], array $paths = [], boolean $themed = false )
$path string The output path or the asset target.
$files array An array of MiniAsset\File\FileInterface
$filters array An array of filter names for this target.
$paths array A list of search paths for this asset. These paths are used by filters that allow additional resources to be included e.g. Sprockets
$themed boolean Whether or not this file should be themed.
    public function __construct($path, $files = [], $filters = [], $paths = [], $themed = false)
    {
        $this->path = $path;
        $this->files = $files;
        $this->filters = $filters;
        $this->paths = $paths;
        $this->themed = $themed;
    }