Skip to content

Commit efc59d1

Browse files
committed
Changes for StyleCI
1 parent 5c37762 commit efc59d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Commands/Cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function handle()
1717

1818
$keep = $this->option('keep');
1919

20-
if (!$this->option('keep')) {
20+
if (! $this->option('keep')) {
2121
$this->warn('No value for option --keep.');
2222

2323
return;

src/DbSnapshotsServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use Illuminate\Support\ServiceProvider;
77
use Spatie\DbSnapshots\Commands\Create;
88
use Spatie\DbSnapshots\Commands\Delete;
9-
use Illuminate\Contracts\Filesystem\Factory;
109
use Spatie\DbSnapshots\Commands\Cleanup;
10+
use Illuminate\Contracts\Filesystem\Factory;
1111
use Spatie\DbSnapshots\Commands\ListSnapshots;
1212

1313
class DbSnapshotsServiceProvider extends ServiceProvider

0 commit comments

Comments
 (0)