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\SqliteEnv;
use Acacha\Llum\Traits\TouchSqliteFile;
/**
* Class SqliteCommand.
*/
class SqliteCommand extends LlumCommand
{
use TouchSqliteFile, SqliteEnv;
* Command name.
*
* @var string
protected $commandName = 'sqlite';
* Command description.
protected $commandDescription = 'Touch sqlite file and enable sqlite on .env';
* Method to execute.
protected $method = 'sqlite';
* sqlite command.
public function sqlite()
$this->touchSqliteFile();
$this->sqliteEnv();
}