Codesleeve\AssetPipeline\Commands\AssetsSetupCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( ) : void
return void
    public function fire()
    {
        $structure = __DIR__ . '/../../../../structure';
        $base = base_path();
        $this->line('<info>codesleeve\\asset-pipeline creating initial directory structure and copying some general purpose assets over</info>');
        $this->xcopy(realpath($structure), realpath($base));
        $this->line('');
        $this->line('<info>codesleeve\\asset-pipeline completed directory setup</info>');
    }
AssetsSetupCommand