Completed
Push — develop ( a4c009...631bae )
by Erwin
07:40 queued 03:31
created
src/Databases/Storage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         }
95 95
 
96 96
         $process = new Process(['gzip', '-d', $workableFile]);
97
-        $process->run(function ($type, $buffer): bool {
97
+        $process->run(function($type, $buffer): bool {
98 98
             if (Process::OUT === $type) {
99 99
                 Log::debug('gzip buffer: '.$buffer);
100 100
             }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         }
131 131
 
132 132
         // Get the files matching the database identifier
133
-        $filesFilter = array_filter($files, function ($item) use ($databaseIdentifier) {
133
+        $filesFilter = array_filter($files, function($item) use ($databaseIdentifier) {
134 134
             return strpos($item, $databaseIdentifier);
135 135
         });
136 136
 
Please login to merge, or discard this patch.