Passed
Push — 0.1.x ( 48cd20...8a707f )
by f
01:32
created
src/Formats/Iso.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
                     $this->files[$file->Location] = $directory.$file->strd_FileId;
80 80
                     $this->filesSize += $file->DataLen;
81 81
 
82
-                    $this->filesData[$directory . $file->strd_FileId] =
82
+                    $this->filesData[$directory.$file->strd_FileId] =
83 83
                         [
84 84
                             'size' => $file->DataLen,
85 85
                             'mtime' =>
86
-                                strtotime((string)$file->isoRecDate),
86
+                                strtotime((string) $file->isoRecDate),
87 87
                         ];
88 88
                 }
89 89
             }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             return false;
132 132
 
133 133
         return new ArchiveEntry($fileName, $this->filesData[$fileName]['size'],
134
-            $this->filesData[$fileName]['size'], $this->filesData[$fileName]['mtime'],false);
134
+            $this->filesData[$fileName]['size'], $this->filesData[$fileName]['mtime'], false);
135 135
     }
136 136
 
137 137
     /**
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * @return false|int
224 224
      * @throws UnsupportedOperationException
225 225
      */
226
-    public static function createArchive(array $files, $archiveFileName){
226
+    public static function createArchive(array $files, $archiveFileName) {
227 227
         throw new UnsupportedOperationException();
228 228
     }
229 229
 }
230 230
\ No newline at end of file
Please login to merge, or discard this patch.