@@ -71,7 +71,7 @@ discard block |
||
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 |
||
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 | /** |
@@ -474,9 +474,9 @@ |
||
474 | 474 | |
475 | 475 | |
476 | 476 | return "<footer>" |
477 | - . '<span class="kint-popup-trigger" title="Open in new window">→</span> ' |
|
478 | - . "{$calleeInfo}{$callingFunction}{$traceDisplay}" |
|
479 | - . "</footer></div>"; |
|
477 | + . '<span class="kint-popup-trigger" title="Open in new window">→</span> ' |
|
478 | + . "{$calleeInfo}{$callingFunction}{$traceDisplay}" |
|
479 | + . "</footer></div>"; |
|
480 | 480 | } |
481 | 481 | |
482 | 482 | /** |
@@ -574,8 +574,8 @@ |
||
574 | 574 | |
575 | 575 | // encode and truncate |
576 | 576 | $variableData->value = '"' |
577 | - . self::escape(self::_substr($strippedString, 0, Kint::$maxStrLength, $encoding), $encoding) |
|
578 | - . '…"'; |
|
577 | + . self::escape(self::_substr($strippedString, 0, Kint::$maxStrLength, $encoding), $encoding) |
|
578 | + . '…"'; |
|
579 | 579 | $variableData->extendedValue = self::escape($variable, $encoding); |
580 | 580 | |
581 | 581 | return; |
@@ -388,9 +388,9 @@ |
||
388 | 388 | // TODO: make this readable ... |
389 | 389 | return isset(self::$_css3Named[$var]) |
390 | 390 | || preg_match( |
391 | - '/^(?:#[0-9A-Fa-f]{3}|#[0-9A-Fa-f]{6}|(?:rgb|hsl)a?\s*\((?:\s*[0-9.%]+\s*,?){3,4}\))$/', |
|
392 | - $var |
|
393 | - ); |
|
391 | + '/^(?:#[0-9A-Fa-f]{3}|#[0-9A-Fa-f]{6}|(?:rgb|hsl)a?\s*\((?:\s*[0-9.%]+\s*,?){3,4}\))$/', |
|
392 | + $var |
|
393 | + ); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | /** |