@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public static function tryGetCompressionType(string $filename): null|string { |
|
| 46 | + public static function tryGetCompressionType(string $filename): null | string { |
|
| 47 | 47 | switch (true) { |
| 48 | 48 | case str_ends_with($filename, '.sql'): |
| 49 | 49 | return 'none'; |
@@ -16,8 +16,8 @@ |
||
| 16 | 16 | |
| 17 | 17 | public function __construct(InputInterface $input) |
| 18 | 18 | { |
| 19 | - $this->compressionLevel = (int)$input->getOption('zstd-level'); |
|
| 20 | - $this->extraArgs = (string)$input->getOption('zstd-extra-args'); |
|
| 19 | + $this->compressionLevel = (int) $input->getOption('zstd-level'); |
|
| 20 | + $this->extraArgs = (string) $input->getOption('zstd-extra-args'); |
|
| 21 | 21 | |
| 22 | 22 | parent::__construct($input); |
| 23 | 23 | } |