Passed
Push — master ( 4db184...75f148 )
by f
23:35 queued 08:35
created
src/LzwStreamWrapper.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private static $AVERAGE_COMPRESSION_RATIO = 2;
18 18
     public static $forceTmpFile = false;
19 19
     /** High limit. unit: MBytes.
20
-    */
20
+     */
21 21
     public static $highLimit = 512;
22 22
 
23 23
     private $mode;
Please login to merge, or discard this patch.
Braces   +24 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,8 +11,9 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public static function registerWrapper()
13 13
     {
14
-        if (!self::$registered)
15
-            stream_wrapper_register('compress.lzw', __CLASS__);
14
+        if (!self::$registered) {
15
+                    stream_wrapper_register('compress.lzw', __CLASS__);
16
+        }
16 17
         self::$registered = true;
17 18
     }
18 19
 
@@ -43,12 +44,14 @@  discard block
 block discarded – undo
43 44
     {
44 45
         // check for compress & uncompress utility
45 46
         $this->checkBinary();
46
-        if (self::$installed === false)
47
-            throw new \Exception('compress and uncompress commands are required');
47
+        if (self::$installed === false) {
48
+                    throw new \Exception('compress and uncompress commands are required');
49
+        }
48 50
 
49 51
         $schema = 'compress.lzw://';
50
-        if (strncasecmp($schema, $path, strlen($schema)) == 0)
51
-            $path = substr($path, strlen($schema));
52
+        if (strncasecmp($schema, $path, strlen($schema)) == 0) {
53
+                    $path = substr($path, strlen($schema));
54
+        }
52 55
 
53 56
         if (file_exists($path)) {
54 57
             $this->path = realpath($path);
@@ -62,14 +65,16 @@  discard block
 block discarded – undo
62 65
                 $this->read();
63 66
             } else {
64 67
                 $prefix = basename(__FILE__, '.php');
65
-                if (($tmp = tempnam(sys_get_temp_dir(), $prefix)) === false)
66
-                    throw new \Exception(__CLASS__.', line '.__LINE__.
68
+                if (($tmp = tempnam(sys_get_temp_dir(), $prefix)) === false) {
69
+                                    throw new \Exception(__CLASS__.', line '.__LINE__.
67 70
                         ': Could not create temporary file in '.
68 71
                         sys_get_temp_dir());
69
-                if (($tmp2 = tempnam(sys_get_temp_dir(), $prefix)) === false)
70
-                    throw new \Exception(__CLASS__.', line '.__LINE__.
72
+                }
73
+                if (($tmp2 = tempnam(sys_get_temp_dir(), $prefix)) === false) {
74
+                                    throw new \Exception(__CLASS__.', line '.__LINE__.
71 75
                         ': Could not create temporary file in '.
72 76
                         sys_get_temp_dir());
77
+                }
73 78
                 $this->tmp = $tmp;
74 79
                 $this->tmp2 = $tmp2;
75 80
                 $this->read();
@@ -78,14 +83,16 @@  discard block
 block discarded – undo
78 83
             $this->path = $path;
79 84
             if (self::$forceTmpFile) {
80 85
                 $prefix = basename(__FILE__, '.php');
81
-                if (($tmp = tempnam(sys_get_temp_dir(), $prefix)) === false)
82
-                    throw new \Exception(__CLASS__.', line '.__LINE__.
86
+                if (($tmp = tempnam(sys_get_temp_dir(), $prefix)) === false) {
87
+                                    throw new \Exception(__CLASS__.', line '.__LINE__.
83 88
                         ': Could not create temporary file in '.
84 89
                         sys_get_temp_dir());
85
-                if (($tmp2 = tempnam(sys_get_temp_dir(), $prefix)) === false)
86
-                    throw new \Exception(__CLASS__.', line '.__LINE__.
90
+                }
91
+                if (($tmp2 = tempnam(sys_get_temp_dir(), $prefix)) === false) {
92
+                                    throw new \Exception(__CLASS__.', line '.__LINE__.
87 93
                         ': Could not create temporary file in '.
88 94
                         sys_get_temp_dir());
95
+                }
89 96
                 $this->tmp = $tmp;
90 97
                 $this->tmp2 = $tmp2;
91 98
                 $this->pointer = 0;
@@ -266,7 +273,9 @@  discard block
 block discarded – undo
266 273
         }
267 274
         if ($this->tmp !== null) {
268 275
             unlink($this->tmp);
269
-            if (file_exists($this->tmp2)) unlink($this->tmp2);
276
+            if (file_exists($this->tmp2)) {
277
+             unlink($this->tmp2);
278
+            }
270 279
         } else {
271 280
             $this->data = null;
272 281
         }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -237,8 +237,8 @@
 block discarded – undo
237 237
                 if ($code == 0 || $code == 2 || is_null($code)) {
238 238
                     // rewrite original file
239 239
                     if (rename($this->tmp2, $this->path) !== true) {
240
-                        throw new \RuntimeException(__FILE__ . ', line ' . __LINE__ .
241
-                            ': Could not replace original file ' . $this->path);
240
+                        throw new \RuntimeException(__FILE__.', line '.__LINE__.
241
+                            ': Could not replace original file '.$this->path);
242 242
                     }
243 243
                 } else {
244 244
                     throw new \RuntimeException(__FILE__.', line '.__LINE__.
Please login to merge, or discard this patch.
src/Archive7z.php 1 patch
Braces   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
      */
11 11
     public static function getBinaryVersion()
12 12
     {
13
-        if (method_exists(__CLASS__, 'makeBinary7z'))
14
-            try {
13
+        if (method_exists(__CLASS__, 'makeBinary7z')) {
14
+                    try {
15 15
                 $binary = static::makeBinary7z();
16
+        }
16 17
             } catch (\Exception $e) {
17 18
                 return false;
18
-            }
19
-        else {
19
+            } else {
20 20
             // some hack for gemorroj/archive7z 4.x version
21 21
             try {
22 22
                 $seven_zip = new self(null);
@@ -29,8 +29,9 @@  discard block
 block discarded – undo
29 29
 
30 30
         $process = new Process([str_replace('\\', '/', $binary)]);
31 31
         $result = $process->mustRun()->getOutput();
32
-        if (!preg_match('~7-Zip (\([a-z]\) )?(\[[\d]+\] )?(?<version>\d+\.\d+)~i', $result, $version))
33
-            return false;
32
+        if (!preg_match('~7-Zip (\([a-z]\) )?(\[[\d]+\] )?(?<version>\d+\.\d+)~i', $result, $version)) {
33
+                    return false;
34
+        }
34 35
 
35 36
         return $version['version'];
36 37
     }
Please login to merge, or discard this patch.
src/Drivers/TarByPhar.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -203,8 +203,9 @@
 block discarded – undo
203 203
         $deleted = 0;
204 204
 
205 205
         foreach ($files as $i => $file) {
206
-            if ($this->tar->delete($file))
207
-                $deleted++;
206
+            if ($this->tar->delete($file)) {
207
+                            $deleted++;
208
+            }
208 209
         }
209 210
 
210 211
         $this->tar = null;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
      */
191 191
     public function getFileStream($fileName)
192 192
     {
193
-        return fopen('phar://'.$this->archiveFileName . '/' . $fileName, 'rb');
193
+        return fopen('phar://'.$this->archiveFileName.'/'.$fileName, 'rb');
194 194
     }
195 195
 
196 196
     /**
Please login to merge, or discard this patch.
src/Drivers/Cab.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,9 @@
 block discarded – undo
60 60
      */
61 61
     public function __construct($archiveFileName, $format, $password = null)
62 62
     {
63
-        if ($password !== null)
64
-            throw new UnsupportedOperationException('Cab archive does not support password!');
63
+        if ($password !== null) {
64
+                    throw new UnsupportedOperationException('Cab archive does not support password!');
65
+        }
65 66
         $this->open($archiveFileName);
66 67
     }
67 68
 
Please login to merge, or discard this patch.
src/Drivers/Iso.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
                     $this->files[$file->Location] = $directory.$file->strd_FileId;
121 121
                     $this->filesSize += $file->DataLen;
122 122
 
123
-                    $this->filesData[$directory . $file->strd_FileId] =
123
+                    $this->filesData[$directory.$file->strd_FileId] =
124 124
                         [
125 125
                             'size' => $file->DataLen,
126 126
                             'mtime' =>
127
-                                strtotime((string)$file->isoRecDate),
127
+                                strtotime((string) $file->isoRecDate),
128 128
                         ];
129 129
                 }
130 130
             }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
             return false;
173 173
 
174 174
         return new ArchiveEntry($fileName, $this->filesData[$fileName]['size'],
175
-            $this->filesData[$fileName]['size'], $this->filesData[$fileName]['mtime'],false);
175
+            $this->filesData[$fileName]['size'], $this->filesData[$fileName]['mtime'], false);
176 176
     }
177 177
 
178 178
     /**
Please login to merge, or discard this patch.
Braces   +18 added lines, -11 removed lines patch added patch discarded remove patch
@@ -69,8 +69,9 @@  discard block
 block discarded – undo
69 69
     public function __construct($archiveFileName, $format, $password = null)
70 70
     {
71 71
         $this->open($archiveFileName);
72
-        if ($password !== null)
73
-            throw new UnsupportedOperationException('Iso archive does not support password!');
72
+        if ($password !== null) {
73
+                    throw new UnsupportedOperationException('Iso archive does not support password!');
74
+        }
74 75
     }
75 76
 
76 77
     /**
@@ -93,8 +94,9 @@  discard block
 block discarded – undo
93 94
 
94 95
         /** @var \CVolumeDescriptor $usedDesc */
95 96
         $usedDesc = $this->iso->GetDescriptor(SUPPLEMENTARY_VOLUME_DESC);
96
-        if (!$usedDesc)
97
-            $usedDesc = $this->iso->GetDescriptor(PRIMARY_VOLUME_DESC);
97
+        if (!$usedDesc) {
98
+                    $usedDesc = $this->iso->GetDescriptor(PRIMARY_VOLUME_DESC);
99
+        }
98 100
         $this->blockSize = $usedDesc->iBlockSize;
99 101
         $directories = $usedDesc->LoadMPathTable($this->iso);
100 102
         // iterate over all directories
@@ -115,8 +117,9 @@  discard block
 block discarded – undo
115 117
             if ($files) {
116 118
                 /** @var \CFileDirDescriptors $file */
117 119
                 foreach ($files as $file) {
118
-                    if (in_array($file->strd_FileId, ['.', '..']) || $file->IsDirectory())
119
-                        continue;
120
+                    if (in_array($file->strd_FileId, ['.', '..']) || $file->IsDirectory()) {
121
+                                            continue;
122
+                    }
120 123
                     $this->files[$file->Location] = $directory.$file->strd_FileId;
121 124
                     $this->filesSize += $file->DataLen;
122 125
 
@@ -168,8 +171,9 @@  discard block
 block discarded – undo
168 171
      */
169 172
     public function getFileData($fileName)
170 173
     {
171
-        if (!isset($this->filesData[$fileName]))
172
-            return false;
174
+        if (!isset($this->filesData[$fileName])) {
175
+                    return false;
176
+        }
173 177
 
174 178
         return new ArchiveEntry($fileName, $this->filesData[$fileName]['size'],
175 179
             $this->filesData[$fileName]['size'], $this->filesData[$fileName]['mtime'],false);
@@ -204,11 +208,14 @@  discard block
 block discarded – undo
204 208
     protected function prepareForFileExtracting($fileName)
205 209
     {
206 210
         $Location = array_search($fileName, $this->files, true);
207
-        if (!isset($this->filesData[$fileName])) return false;
211
+        if (!isset($this->filesData[$fileName])) {
212
+         return false;
213
+        }
208 214
         $data = $this->filesData[$fileName];
209 215
         $Location_Real = $Location * $this->blockSize;
210
-        if ($this->iso->Seek($Location_Real, SEEK_SET) === false)
211
-            return false;
216
+        if ($this->iso->Seek($Location_Real, SEEK_SET) === false) {
217
+                    return false;
218
+        }
212 219
         return $data;
213 220
     }
214 221
 
Please login to merge, or discard this patch.
src/Drivers/Rar.php 2 patches
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -100,7 +100,9 @@  discard block
 block discarded – undo
100 100
     {
101 101
         $information = new ArchiveInformation();
102 102
         foreach ($this->rar->getEntries() as $i => $entry) {
103
-            if ($entry->isDirectory()) continue;
103
+            if ($entry->isDirectory()) {
104
+             continue;
105
+            }
104 106
             $information->files[] = $entry->getName();
105 107
             $information->compressedFilesSize += $entry->getPackedSize();
106 108
             $information->uncompressedFilesSize += $entry->getUnpackedSize();
@@ -115,7 +117,9 @@  discard block
 block discarded – undo
115 117
     {
116 118
         $files = [];
117 119
         foreach ($this->rar->getEntries() as $i => $entry) {
118
-            if ($entry->isDirectory()) continue;
120
+            if ($entry->isDirectory()) {
121
+             continue;
122
+            }
119 123
             $files[] = $entry->getName();
120 124
         }
121 125
         return $files;
@@ -151,7 +155,9 @@  discard block
 block discarded – undo
151 155
     public function getFileContent($fileName)
152 156
     {
153 157
         $entry = $this->rar->getEntry($fileName);
154
-        if ($entry->isDirectory()) return false;
158
+        if ($entry->isDirectory()) {
159
+         return false;
160
+        }
155 161
         return stream_get_contents($entry->getStream());
156 162
     }
157 163
 
@@ -163,7 +169,9 @@  discard block
 block discarded – undo
163 169
     public function getFileStream($fileName)
164 170
     {
165 171
         $entry = $this->rar->getEntry($fileName);
166
-        if ($entry->isDirectory()) return false;
172
+        if ($entry->isDirectory()) {
173
+         return false;
174
+        }
167 175
         return $entry->getStream();
168 176
     }
169 177
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public static function getDescription()
24 24
     {
25
-        return 'adapter for ext-rar' . (self::isInstalled() ? ' (' . phpversion('rar') . ')' : null);
25
+        return 'adapter for ext-rar'.(self::isInstalled() ? ' ('.phpversion('rar').')' : null);
26 26
     }
27 27
 
28 28
     public static function isInstalled()
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public static function getInstallationInstruction()
37 37
     {
38
-        return 'install [rar] extension.' . "\n" . 'Can be installed with pecl: `pecl install rar`';
38
+        return 'install [rar] extension.'."\n".'Can be installed with pecl: `pecl install rar`';
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
src/Drivers/OneFile/Gzip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         $fp = fopen($file, 'rb');
17 17
         if (filesize($file) < 18 || strcmp(fread($fp, 2), "\x1f\x8b")) {
18
-            return false;  // Not GZIP format (See RFC 1952)
18
+            return false; // Not GZIP format (See RFC 1952)
19 19
         }
20 20
         $method = fread($fp, 1);
21 21
         $flags = fread($fp, 1);
Please login to merge, or discard this patch.
src/Drivers/OneFile/OneFileDriver.php 2 patches
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,10 +24,12 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function __construct($archiveFileName, $format, $password = null)
26 26
     {
27
-        if (static::FORMAT_SUFFIX === null)
28
-            throw new \Exception('Format should be initialized');
29
-        if ($password !== null)
30
-            throw new UnsupportedOperationException(self::FORMAT_SUFFIX.' archive does not support password!');
27
+        if (static::FORMAT_SUFFIX === null) {
28
+                    throw new \Exception('Format should be initialized');
29
+        }
30
+        if ($password !== null) {
31
+                    throw new UnsupportedOperationException(self::FORMAT_SUFFIX.' archive does not support password!');
32
+        }
31 33
 
32 34
         $this->fileName = $archiveFileName;
33 35
         $this->inArchiveFileName = basename($archiveFileName, '.'.static::FORMAT_SUFFIX);
@@ -95,8 +97,9 @@  discard block
 block discarded – undo
95 97
     public function extractArchive($outputFolder)
96 98
     {
97 99
         $data = $this->getFileContent($this->inArchiveFileName);
98
-        if ($data === false)
99
-            throw new ArchiveExtractionException('Could not extract archive');
100
+        if ($data === false) {
101
+                    throw new ArchiveExtractionException('Could not extract archive');
102
+        }
100 103
 
101 104
         $size = strlen($data);
102 105
         $written = file_put_contents($outputFolder.$this->inArchiveFileName, $data);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public static function getInstallationInstruction()
33 33
     {
34
-        return 'install `' . static::PHP_EXTENSION . '` extension';
34
+        return 'install `'.static::PHP_EXTENSION.'` extension';
35 35
     }
36 36
 
37 37
     public static function getSupportedFormats()
Please login to merge, or discard this patch.
src/Commands/CommentCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         }
30 30
 
31 31
         if (!empty($previous_comment = $archive->getComment())) {
32
-            $output->writeln('Comment "' . $previous_comment . '" replaced', OutputInterface::OUTPUT_RAW);
32
+            $output->writeln('Comment "'.$previous_comment.'" replaced', OutputInterface::OUTPUT_RAW);
33 33
         } else if ($comment === null) {
34 34
             $output->writeln('Comment deleted', OutputInterface::OUTPUT_RAW);
35 35
         } else {
Please login to merge, or discard this patch.