@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | { |
168 | 168 | $ct_file = $this->ReadOpenXmlFile('[Content_Types].xml', 'object'); |
169 | 169 | |
170 | - if (! ($ct_file instanceof \Traversable)) { |
|
170 | + if (!($ct_file instanceof \Traversable)) { |
|
171 | 171 | throw new Exception('Cannot traverse through [Content_Types].xml.'); |
172 | 172 | } |
173 | 173 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | |
184 | 184 | //if content type for jpg has not been set, add it to xml |
185 | 185 | // and save xml to file and add it to the archive |
186 | - if (! $ct_already_set) { |
|
186 | + if (!$ct_already_set) { |
|
187 | 187 | $sxe = $ct_file->addChild('Default'); |
188 | 188 | $sxe->addAttribute('Extension', $imageCt); |
189 | 189 | $sxe->addAttribute('ContentType', 'image/'.$imageCt); |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | $valid = true; |
363 | 363 | |
364 | 364 | //TODO: create a better url validity check |
365 | - if (! trim(str_replace(['http', ' '], '', $url)) || $url == str_replace('http', '', $url)) { |
|
365 | + if (!trim(str_replace(['http', ' '], '', $url)) || $url == str_replace('http', '', $url)) { |
|
366 | 366 | $valid = false; |
367 | 367 | } |
368 | 368 | } else { |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | //wait until process is ready |
389 | 389 | } |
390 | 390 | // executes after the command finishes |
391 | - if (! $process->isSuccessful()) { |
|
391 | + if (!$process->isSuccessful()) { |
|
392 | 392 | throw new \Symfony\Component\Process\Exception\ProcessFailedException($process); |
393 | 393 | } else { |
394 | 394 | $path_parts = pathinfo($this->StoragePath($this->local_path.$this->template_file_name)); |