for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Foundation\Console;
use Arcanedev\Support\Bases\Command;
/**
* Class SetupCommand
*
* @package Arcanesoft\Foundation\Console
* @author ARCANEDEV <[email protected]>
*/
class SetupCommand extends Command
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* The name and signature of the console command.
* @var string
protected $signature = 'foundation:setup';
* The console command description.
protected $description = 'Foundation setup command.';
| Main Functions
* Execute the console command.
public function handle()
$this->info('Coming soon...');
}