for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acacha\Llum\Console;
use Acacha\Llum\Traits\DevTools;
/**
* Class BootCommand.
*/
class BootCommand extends LlumCommand
{
use DevTools;
* Command name.
*
* @var string
protected $commandName = 'boot';
* Command description.
protected $commandDescription = 'Execute all common first tasks in laravel project';
* Method to execute.
protected $method = 'boot';
* Executes boot command.
protected function boot()
if ($this->devtools() == -1) {
return;
}
$this->touchSqliteFile();
$this->configEnv();
$this->migrate();
$this->serve();