Typo fixes, composer.lock and removal of dead code. Ready for v1.1.1.

This commit is contained in:
Ismo Vuorinen
2017-08-27 19:48:06 +03:00
parent cf7d4d37de
commit 4f51fd8c51
8 changed files with 3309 additions and 25 deletions

View File

@@ -20,21 +20,13 @@ class Gozer extends Command
*
* @var string
*/
protected $description = 'Force delete database tables that has your table prefix';
protected $description = 'Force delete database tables that have your table prefix';
/**
* @var string Database table prefix
*/
private $dbPrefix = '';
/**
* Create a new command instance.
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
@@ -51,12 +43,12 @@ class Gozer extends Command
$this->info('
________
________
/ _____/ ____________ ___________
/ \ ___ / _ \___ // __ \_ __ \
\ \_\ ( <_> ) /\ ___/| | \/
\______ /\____/_____ \\___ >__|
\/ \/ \/
\______ /\____/_____ \\___ >__|
\/ \/ \/
');
@@ -88,6 +80,7 @@ class Gozer extends Command
*/
if ($tables->count() < 1) {
$this->info('There are no tables, only Zuul.');
return true;
}

View File

@@ -20,14 +20,6 @@ class Reload extends Command
*/
protected $description = 'Rollback migrations, migrate and run seeds';
/**
* Create a new command instance.
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
@@ -53,6 +45,8 @@ class Reload extends Command
'--verbose' => 3
]
);
return true;
}
}
}