Passed
Push — master ( 48a836...671d99 )
by f
13:31
created
src/Drivers/SplitbrainPhpArchive.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
 
114 114
             $this->files[] = $information->files[] = str_replace('\\', '/', $member->getPath());
115 115
             $this->members[str_replace('\\', '/', $member->getPath())] = $member;
116
-            $information->compressedFilesSize += (int)$member->getCompressedSize();
117
-            $information->uncompressedFilesSize += (int)$member->getSize();
116
+            $information->compressedFilesSize += (int) $member->getCompressedSize();
117
+            $information->uncompressedFilesSize += (int) $member->getSize();
118 118
         }
119 119
         return $information;
120 120
     }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function getFileContent($fileName)
160 160
     {
161
-        throw new UnsupportedOperationException('Getting file content is not supported by ' . __CLASS__);
161
+        throw new UnsupportedOperationException('Getting file content is not supported by '.__CLASS__);
162 162
     }
163 163
 
164 164
     /**
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      */
168 168
     public function getFileStream($fileName)
169 169
     {
170
-        throw new UnsupportedOperationException('Getting file stream is not supported by ' . __CLASS__);
170
+        throw new UnsupportedOperationException('Getting file stream is not supported by '.__CLASS__);
171 171
     }
172 172
 
173 173
     /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function extractFiles($outputFolder, array $files)
178 178
     {
179
-        throw new UnsupportedOperationException('Extract specific files is not supported by ' . __CLASS__);
179
+        throw new UnsupportedOperationException('Extract specific files is not supported by '.__CLASS__);
180 180
     }
181 181
 
182 182
     /**
Please login to merge, or discard this patch.