Completed
Push — master ( 3227ab...47f526 )
by Lars
28:19 queued 22:27
created
src/kint/decorators/Kint_Decorators_Rich.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -474,9 +474,9 @@
 block discarded – undo
474 474
 
475 475
 
476 476
     return '<footer>'
477
-           . '<span class="kint-popup-trigger" title="Open in new window">&rarr;</span> '
478
-           . "{$calleeInfo}{$callingFunction}{$traceDisplay}"
479
-           . '</footer></div>';
477
+            . '<span class="kint-popup-trigger" title="Open in new window">&rarr;</span> '
478
+            . "{$calleeInfo}{$callingFunction}{$traceDisplay}"
479
+            . '</footer></div>';
480 480
   }
481 481
 
482 482
   /**
Please login to merge, or discard this patch.
src/kint/decorators/Kint_Decorators_JS.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
   public static function decorate(KintVariableData $kintVar, /** @noinspection PhpUnusedParameterInspection */ $level = 0)
72 72
   {
73 73
     return 'kintDump.push(' . json_encode(self::_unparse($kintVar)) . ');'
74
-           . 'console.log(kintDump[kintDump.length-1]);';
74
+            . 'console.log(kintDump[kintDump.length-1]);';
75 75
   }
76 76
 
77 77
   /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     return 'kintDump.push(' . json_encode($traceData) . ');'
97
-           . 'console.log(kintDump[kintDump.length-1]);';
97
+            . 'console.log(kintDump[kintDump.length-1]);';
98 98
   }
99 99
 
100 100
   /**
Please login to merge, or discard this patch.