Passed
Push — master ( dbf9e3...687152 )
by Tobias
02:17
created
src/WrkLst/DocxMustache/DocImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
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
         });
Please login to merge, or discard this patch.
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
             }
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
Please login to merge, or discard this patch.
src/WrkLst/DocxMustache/DocxMustache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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));
Please login to merge, or discard this patch.