Passed
Push — master ( bb1547...2e64cc )
by P.R.
03:46
created
src/Backend/MysqlConstantWorker.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -364,8 +364,8 @@
 block discarded – undo
364 364
           if ($n==0)
365 365
           {
366 366
             throw new RuntimeException("Illegal format at line %d in file '%s'.",
367
-                                       $lineNumber,
368
-                                       $this->constantsFilename);
367
+                                        $lineNumber,
368
+                                        $this->constantsFilename);
369 369
           }
370 370
 
371 371
           if (isset($matches[6]))
Please login to merge, or discard this patch.
src/Wrapper/Wrapper.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -483,9 +483,9 @@  discard block
 block discarded – undo
483 483
       $mangledName = $this->nameMangler->getParameterName($parameter['parameter_name']);
484 484
 
485 485
       $parameters[] = ['php_name'             => '$'.$mangledName,
486
-                       'description'          => $parameter['description'],
487
-                       'php_type'             => $parameter['php_type'],
488
-                       'data_type_descriptor' => $parameter['data_type_descriptor']];
486
+                        'description'          => $parameter['description'],
487
+                        'php_type'             => $parameter['php_type'],
488
+                        'data_type_descriptor' => $parameter['data_type_descriptor']];
489 489
     }
490 490
 
491 491
     $this->enhancePhpDocBlockParameters($parameters);
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
 
506 506
       // Generate phpDoc for the parameters of the wrapper method.
507 507
 
508
-       foreach ($parameters as $parameter)
508
+        foreach ($parameters as $parameter)
509 509
       {
510 510
         $format = sprintf(' * %%-%ds %%-%ds %%-%ds %%s', mb_strlen('@param'), $maxTypeLength, $maxNameLength);
511 511
 
Please login to merge, or discard this patch.