for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rinvex\Subscriptions\Console\Commands;
use Illuminate\Console\Command;
class PublishCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'rinvex:publish:subscriptions {--force : Overwrite any existing files.}';
* The console command description.
protected $description = 'Publish Rinvex Subscriptions Resources.';
* Execute the console command.
* @return void
public function handle()
$this->warn('Publish rinvex/subscriptions:');
$this->call('vendor:publish', ['--tag' => 'rinvex-subscriptions-config', '--force' => $this->option('force')]);
}