Laravelista\LumenVendorPublish\VendorPublishCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( ) : void
return void
    public function fire()
    {
        $tags = $this->option('tag');
        $tags = $tags ?: [null];
        foreach ($tags as $tag) {
            $this->publishTag($tag);
        }
    }