Passed
Push — master ( 308425...218d64 )
by Tobias
02:46
created
src/WrkLst/DocxMustache/DocxMustache.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
             case LIBXML_ERR_WARNING:
370 370
                 $return .= "Warning $error->code: ";
371 371
                 break;
372
-             case LIBXML_ERR_ERROR:
372
+                case LIBXML_ERR_ERROR:
373 373
                 $return .= "Error $error->code: ";
374 374
                 break;
375 375
             case LIBXML_ERR_FATAL:
@@ -378,8 +378,8 @@  discard block
 block discarded – undo
378 378
         }
379 379
 
380 380
         $return .= trim($error->message) .
381
-                   "\n  Line: $error->line" .
382
-                   "\n  Column: $error->column";
381
+                    "\n  Line: $error->line" .
382
+                    "\n  Column: $error->column";
383 383
 
384 384
         if ($error->file) {
385 385
             $return .= "\n  File: $error->file";
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -341,8 +341,7 @@
 block discarded – undo
341 341
             } else {
342 342
                 throw new Exception('Cannot generate xml for word/document.xml.');
343 343
             }
344
-        }
345
-        else
344
+        } else
346 345
         {
347 346
             $xmlerror = '';
348 347
             $errors = libxml_get_errors();
Please login to merge, or discard this patch.