Passed
Push — master ( e1b106...5fa506 )
by Tobias
03:06 queued 45s
created
src/WrkLst/DocxMustache/MustacheRender.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
             }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         return preg_replace_callback(
33 33
             '/{{(.*?)}}/',
34
-            function ($match) {
34
+            function($match) {
35 35
                 return strip_tags($match[0]);
36 36
             },
37 37
             preg_replace("/(?<!{){(?!{)<\/w:t>[\s\S]*?<w:t>{/", '{{', $content)
Please login to merge, or discard this patch.
src/WrkLst/DocxMustache/DocImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
         $h = null;
64 64
 
65
-        $img_rework->resize($w, $h, function ($constraint) {
65
+        $img_rework->resize($w, $h, function($constraint) {
66 66
             $constraint->aspectRatio();
67 67
             $constraint->upsize();
68 68
         });
Please login to merge, or discard this patch.
src/WrkLst/DocxMustache/DocxMustache.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
             }
361 361
 
362 362
             //TODO: create a better url validity check
363
-            if (! trim(str_replace(['http:', ' '], '', $url)) || $url == str_replace('http:', '', $url)) {
363
+            if (!trim(str_replace(['http:', ' '], '', $url)) || $url == str_replace('http:', '', $url)) {
364 364
                 $valid = false;
365 365
             }
366 366
         } else {
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
             //wait until process is ready
387 387
         }
388 388
         // executes after the command finishes
389
-        if (! $process->isSuccessful()) {
389
+        if (!$process->isSuccessful()) {
390 390
             throw new \Symfony\Component\Process\Exception\ProcessFailedException($process);
391 391
         } else {
392 392
             $path_parts = pathinfo($this->StoragePath($this->local_path.$this->template_file_name));
Please login to merge, or discard this patch.