@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | { |
154 | 154 | $ct_file = $this->ReadOpenXmlFile('[Content_Types].xml', 'object'); |
155 | 155 | |
156 | - if (! ($ct_file instanceof \Traversable)) { |
|
156 | + if (!($ct_file instanceof \Traversable)) { |
|
157 | 157 | throw new Exception('Cannot traverse through [Content_Types].xml.'); |
158 | 158 | } else { |
159 | 159 | //check if content type for jpg has been set |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | //if content type for jpg has not been set, add it to xml |
170 | 170 | // and save xml to file and add it to the archive |
171 | - if (! $ct_already_set) { |
|
171 | + if (!$ct_already_set) { |
|
172 | 172 | $sxe = $ct_file->addChild('Default'); |
173 | 173 | $sxe->addAttribute('Extension', $imageCt); |
174 | 174 | $sxe->addAttribute('ContentType', 'image/'.$imageCt); |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | //wait until process is ready |
373 | 373 | } |
374 | 374 | // executes after the command finishes |
375 | - if (! $process->isSuccessful()) { |
|
375 | + if (!$process->isSuccessful()) { |
|
376 | 376 | throw new \Symfony\Component\Process\Exception\ProcessFailedException($process); |
377 | 377 | } else { |
378 | 378 | $path_parts = pathinfo($this->storagePath($this->local_path.$this->template_file_name)); |