Codesleeve\AssetPipeline\Commands\AssetsCleanCommand::__construct PHP Method

__construct() public method

Construct a new AssetsCleanCommand
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->asset = \App::make('asset');
        // force concatenation off, so we can get
        // a big list of all the files required
        // in this manifest file
        $config = $this->asset->getConfig();
        $config['concat'] = array();
        $this->asset->setConfig($config);
    }