Passed
Push — master ( e87a98...8efce5 )
by Pavel
03:51
created
src/Jobs/CreateBackupJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             $backupJob->dontBackupDatabases();
32 32
         }
33 33
 
34
-        if (! empty($this->option)) {
34
+        if (!empty($this->option)) {
35 35
             $prefix = str_replace('_', '-', $this->option).'-';
36 36
 
37 37
             $backupJob->setFilename($prefix.date('Y-m-d-H-i-s').'.zip');
Please login to merge, or discard this patch.
src/Http/Livewire/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 ->toArray();
51 51
         });
52 52
 
53
-        if (! $this->activeDisk and count($this->backupStatuses)) {
53
+        if (!$this->activeDisk and count($this->backupStatuses)) {
54 54
             $this->activeDisk = $this->backupStatuses[0]['disk'];
55 55
         }
56 56
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
             return $backup->path() === $filePath;
133 133
         });
134 134
 
135
-        if (! $backup) {
135
+        if (!$backup) {
136 136
             return response('Backup not found', Response::HTTP_UNPROCESSABLE_ENTITY);
137 137
         }
138 138
 
Please login to merge, or discard this patch.