Passed
Branch master (8aad86)
by Eric
03:23
created
src/Compress.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
             throw new CompressException('__exception_compress_file_value_empty');
149 149
         }
150 150
         
151
-        if (! file_exists($file)) {
151
+        if (!file_exists($file)) {
152 152
             throw new CompressException('__exception_compress_file_not_exist');
153 153
         }
154 154
         
155
-        if (! is_readable($file)) {
155
+        if (!is_readable($file)) {
156 156
             throw new CompressException('__exception_compress_file_not_readable');
157 157
         }
158 158
         
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         
175 175
         $zip->close();
176 176
         
177
-        if (! $this->getKeepOriginal() && file_exists($file)) {
177
+        if (!$this->getKeepOriginal() && file_exists($file)) {
178 178
             unlink($file);
179 179
         }
180 180
         
Please login to merge, or discard this patch.