Skip to content

Commit

Permalink
Apply fixes from StyleCI (drfraker#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
drfraker authored Feb 25, 2019
1 parent 4c2073b commit 052737b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Snipe.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function newSnapshot()
*/
protected function importDatabase()
{
if (!SnipeDatabaseState::$imported) {
if (! SnipeDatabaseState::$imported) {
$dumpfile = config('snipe.snapshot-location');

exec("mysql -u {$this->getDbUsername()} --password={$this->getDbPassword()} {$this->getDbName()} < {$dumpfile} 2>/dev/null");
Expand Down
1 change: 0 additions & 1 deletion src/SnipeMigrationsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Drfraker\SnipeMigrations;

use Drfraker\SnipeMigrations\SnipeClearCommand;
use Illuminate\Support\ServiceProvider;

class SnipeMigrationsServiceProvider extends ServiceProvider
Expand Down

0 comments on commit 052737b

Please sign in to comment.