@@ -148,11 +148,11 @@ discard block |
||
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 |
||
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 |