Completed
Push — master ( 02a765...c0a6fd )
by Romain
16:38 queued 05:36
created
src/Xlsx/Archive.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
             $this->zip = new \ZipArchive();
80 80
             if (true !== $errorCode = $this->zip->open($this->archivePath)) {
81 81
                 $this->zip = null;
82
-                throw new \RuntimeException('Error opening file: '.$this->getErrorMessage($errorCode));
82
+                throw new \RuntimeException('Error opening file: ' . $this->getErrorMessage($errorCode));
83 83
             }
84 84
         }
85 85
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                 return 'Entry has been deleted';
194 194
 
195 195
             default:
196
-                return 'An unknown error has occurred('.intval($errorCode).')';
196
+                return 'An unknown error has occurred(' . intval($errorCode) . ')';
197 197
         }
198 198
     }
199 199
 }
Please login to merge, or discard this patch.