@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | 'mongodump' => [], |
43 | 43 | 'mysqldump' => [ |
44 | 44 | '/usr/local/mysql/bin', // Mac OS X |
45 | - '/usr/mysql/bin', // Linux |
|
45 | + '/usr/mysql/bin', // Linux |
|
46 | 46 | ], |
47 | 47 | 'tar' => [], |
48 | 48 | ]; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public static function detectCmdLocationInPath(string $cmd, string $path) : string |
121 | 121 | { |
122 | - $command = $path . DIRECTORY_SEPARATOR . $cmd; |
|
122 | + $command = $path.DIRECTORY_SEPARATOR.$cmd; |
|
123 | 123 | $bin = self::isExecutable($command); |
124 | 124 | if (empty($bin)) { |
125 | 125 | throw new RuntimeException(sprintf('wrong path specified for \'%s\': %s', $cmd, $path)); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public static function detectCmdLocationInPaths($cmd, array $paths) : string |
156 | 156 | { |
157 | 157 | foreach ($paths as $path) { |
158 | - $command = $path . DIRECTORY_SEPARATOR . $cmd; |
|
158 | + $command = $path.DIRECTORY_SEPARATOR.$cmd; |
|
159 | 159 | $bin = self::isExecutable($command); |
160 | 160 | if (null !== $bin) { |
161 | 161 | return $bin; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | return $path; |
262 | 262 | } |
263 | 263 | |
264 | - $file = $base . DIRECTORY_SEPARATOR . $path; |
|
264 | + $file = $base.DIRECTORY_SEPARATOR.$path; |
|
265 | 265 | |
266 | 266 | if ($useIncludePath && !file_exists($file)) { |
267 | 267 | $includePathFile = stream_resolve_include_path($path); |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | $styledLines = []; |
296 | 296 | foreach ($lines as $line) { |
297 | - $styledLines[] = strlen($line) ? $style . str_pad($line, $padding) . "\x1b[0m" : ''; |
|
297 | + $styledLines[] = strlen($line) ? $style.str_pad($line, $padding)."\x1b[0m" : ''; |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | return implode(PHP_EOL, $styledLines); |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | */ |
310 | 310 | public static function formatWithAsterisk(string $buffer, int $length = 75) : string |
311 | 311 | { |
312 | - return $buffer . str_repeat('*', $length - strlen($buffer)) . PHP_EOL; |
|
312 | + return $buffer.str_repeat('*', $length - strlen($buffer)).PHP_EOL; |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | /** |
@@ -333,10 +333,10 @@ discard block |
||
333 | 333 | if ('.' === $file || '..' === $file) { |
334 | 334 | continue; |
335 | 335 | } |
336 | - if (is_dir($dir . '/' . $file)) { |
|
337 | - self::removeDir($dir . '/' . $file); |
|
336 | + if (is_dir($dir.'/'.$file)) { |
|
337 | + self::removeDir($dir.'/'.$file); |
|
338 | 338 | } else { |
339 | - unlink($dir . '/' . $file); |
|
339 | + unlink($dir.'/'.$file); |
|
340 | 340 | } |
341 | 341 | } |
342 | 342 | rmdir($dir); |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $this->pathElementsChanging[] = $d; |
180 | 180 | $foundChangingElement = true; |
181 | 181 | } else { |
182 | - $this->pathNotChanging .= DIRECTORY_SEPARATOR . $d; |
|
182 | + $this->pathNotChanging .= DIRECTORY_SEPARATOR.$d; |
|
183 | 183 | } |
184 | 184 | } |
185 | 185 | } |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | */ |
272 | 272 | public function getFilename(bool $plain = false) : string |
273 | 273 | { |
274 | - return $this->filename . $this->getFilenameSuffix($plain); |
|
274 | + return $this->filename.$this->getFilenameSuffix($plain); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | /** |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | */ |
293 | 293 | public function getFilenameRaw($plain = false) : string |
294 | 294 | { |
295 | - return $this->filenameRaw . $this->getFilenameSuffix($plain); |
|
295 | + return $this->filenameRaw.$this->getFilenameSuffix($plain); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | /** |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | */ |
304 | 304 | public function getFilenameSuffix($plain = false) : string |
305 | 305 | { |
306 | - return $this->getSuffixToAppend() . ($plain ? '' : $this->getCompressionSuffix() . $this->getCrypterSuffix()); |
|
306 | + return $this->getSuffixToAppend().($plain ? '' : $this->getCompressionSuffix().$this->getCrypterSuffix()); |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | /** |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | */ |
314 | 314 | public function getSuffixToAppend() : string |
315 | 315 | { |
316 | - return count($this->fileSuffixes) ? '.' . implode('.', $this->fileSuffixes) : ''; |
|
316 | + return count($this->fileSuffixes) ? '.'.implode('.', $this->fileSuffixes) : ''; |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | /** |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | */ |
324 | 324 | public function getCompressionSuffix() : string |
325 | 325 | { |
326 | - return $this->shouldBeCompressed() ? '.' . $this->compression->getSuffix() : ''; |
|
326 | + return $this->shouldBeCompressed() ? '.'.$this->compression->getSuffix() : ''; |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | */ |
334 | 334 | public function getCrypterSuffix() : string |
335 | 335 | { |
336 | - return $this->shouldBeEncrypted() ? '.' . $this->crypter->getSuffix() : ''; |
|
336 | + return $this->shouldBeEncrypted() ? '.'.$this->crypter->getSuffix() : ''; |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | /** |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | */ |
407 | 407 | public function getPathname(bool $plain = false) : string |
408 | 408 | { |
409 | - return $this->path . DIRECTORY_SEPARATOR . $this->getFilename($plain); |
|
409 | + return $this->path.DIRECTORY_SEPARATOR.$this->getFilename($plain); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | /** |
@@ -64,11 +64,11 @@ |
||
64 | 64 | protected function findConfigurationInDir(string $path) : string |
65 | 65 | { |
66 | 66 | foreach ($this->defaultConfigNames as $file) { |
67 | - $configurationFile = $path . DIRECTORY_SEPARATOR . $file; |
|
67 | + $configurationFile = $path.DIRECTORY_SEPARATOR.$file; |
|
68 | 68 | if (file_exists($configurationFile)) { |
69 | 69 | return realpath($configurationFile); |
70 | 70 | } |
71 | 71 | } |
72 | - throw new Exception('Can\'t find configuration in directory \'' . $path . '\'.'); |
|
72 | + throw new Exception('Can\'t find configuration in directory \''.$path.'\'.'); |
|
73 | 73 | } |
74 | 74 | } |