@@ -52,7 +52,7 @@ |
||
52 | 52 | $w = null; |
53 | 53 | } |
54 | 54 | |
55 | - $img_rework->resize($w, $h, function ($constraint) { |
|
55 | + $img_rework->resize($w, $h, function($constraint) { |
|
56 | 56 | $constraint->aspectRatio(); |
57 | 57 | $constraint->upsize(); |
58 | 58 | }); |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | $mustache_template = self::TagCleaner($mustache_template); |
11 | 11 | } |
12 | 12 | |
13 | - $m = new \Mustache_Engine(['escape' => function ($value) { |
|
13 | + $m = new \Mustache_Engine(['escape' => function($value) { |
|
14 | 14 | if (str_replace('*[[DONOTESCAPE]]*', '', $value) != $value) { |
15 | 15 | return str_replace('*[[DONOTESCAPE]]*', '', $value); |
16 | 16 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | //this is necessary, as word might produce unnecesary xml tage inbetween curly backets. |
28 | 28 | return preg_replace_callback( |
29 | 29 | '/{{(.*?)}}/', |
30 | - function ($match) { |
|
30 | + function($match) { |
|
31 | 31 | return strip_tags($match[0]); |
32 | 32 | }, |
33 | 33 | $content |
@@ -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); |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | //wait until process is ready |
378 | 378 | } |
379 | 379 | // executes after the command finishes |
380 | - if (! $process->isSuccessful()) { |
|
380 | + if (!$process->isSuccessful()) { |
|
381 | 381 | throw new \Symfony\Component\Process\Exception\ProcessFailedException($process); |
382 | 382 | } else { |
383 | 383 | $path_parts = pathinfo($this->storagePath($this->local_path.$this->template_file_name)); |