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