We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c37762 commit efc59d1Copy full SHA for efc59d1
src/Commands/Cleanup.php
@@ -17,7 +17,7 @@ public function handle()
17
18
$keep = $this->option('keep');
19
20
- if (!$this->option('keep')) {
+ if (! $this->option('keep')) {
21
$this->warn('No value for option --keep.');
22
23
return;
src/DbSnapshotsServiceProvider.php
@@ -6,8 +6,8 @@
6
use Illuminate\Support\ServiceProvider;
7
use Spatie\DbSnapshots\Commands\Create;
8
use Spatie\DbSnapshots\Commands\Delete;
9
-use Illuminate\Contracts\Filesystem\Factory;
10
use Spatie\DbSnapshots\Commands\Cleanup;
+use Illuminate\Contracts\Filesystem\Factory;
11
use Spatie\DbSnapshots\Commands\ListSnapshots;
12
13
class DbSnapshotsServiceProvider extends ServiceProvider
0 commit comments