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