@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $process = Process::fromShellCommandline($command, null, null, null, 9999.00); |
65 | 65 | |
66 | 66 | $processFailure = false; |
67 | - $process->run(function ($type, $buffer) use ($processFailure): bool { |
|
67 | + $process->run(function($type, $buffer) use ($processFailure): bool { |
|
68 | 68 | if (Process::OUT === $type) { |
69 | 69 | Log::debug('MySQL Dump buffer: '.$buffer); |
70 | 70 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | $process = Process::fromShellCommandline($command, null, null, null, 9999.00); |
133 | 133 | |
134 | - $process->run(function ($type, $buffer): bool { |
|
134 | + $process->run(function($type, $buffer): bool { |
|
135 | 135 | if (Process::OUT === $type) { |
136 | 136 | Log::debug('MySQL import buffer: '.$buffer); |
137 | 137 | } |
@@ -83,7 +83,7 @@ |
||
83 | 83 | $process = new Process(['gzip', '-9', $this->getRealDatabase()->getBackupFilename()]); |
84 | 84 | |
85 | 85 | $processFailure = false; |
86 | - $process->run(function ($type, $buffer) use ($processFailure): bool { |
|
86 | + $process->run(function($type, $buffer) use ($processFailure): bool { |
|
87 | 87 | if (Process::OUT === $type) { |
88 | 88 | Log::debug('gzip buffer: '.$buffer); |
89 | 89 | } |
@@ -73,7 +73,7 @@ |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | $process = new Process(['gzip', '-d', $workableFile]); |
76 | - $process->run(function ($type, $buffer): bool { |
|
76 | + $process->run(function($type, $buffer): bool { |
|
77 | 77 | if (Process::OUT === $type) { |
78 | 78 | Log::debug('gzip buffer: '.$buffer); |
79 | 79 | } |
@@ -116,7 +116,7 @@ |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | // Get the files matching the database identifier |
119 | - $filesFilter = array_filter($files, function ($item) { |
|
119 | + $filesFilter = array_filter($files, function($item) { |
|
120 | 120 | return strpos($item, $this->database->getRealDatabase()->getDatabaseIdentifier()); |
121 | 121 | }); |
122 | 122 |