@@ -94,7 +94,7 @@ discard block |
||
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 |
||
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 |