Completed
Push — master ( 7c3177...d4087b )
by Lars
02:52
created
src/kint/inc/KintParser.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -82,27 +82,27 @@  discard block
 block discarded – undo
82 82
   private static function _decorateCell(KintVariableData $kintVar)
83 83
   {
84 84
     if ($kintVar->extendedValue !== null || !empty($kintVar->_alternatives)) {
85
-      return '<td>' . Kint_Decorators_Rich::decorate($kintVar) . '</td>';
85
+      return '<td>'.Kint_Decorators_Rich::decorate($kintVar).'</td>';
86 86
     }
87 87
 
88 88
     $output = '<td';
89 89
 
90 90
     if ($kintVar->value !== null) {
91
-      $output .= ' title="' . $kintVar->type;
91
+      $output .= ' title="'.$kintVar->type;
92 92
 
93 93
       if ($kintVar->size !== null) {
94
-        $output .= " (" . $kintVar->size . ")";
94
+        $output .= " (".$kintVar->size.")";
95 95
       }
96 96
 
97
-      $output .= '">' . $kintVar->value;
97
+      $output .= '">'.$kintVar->value;
98 98
     } else {
99 99
       $output .= '>';
100 100
 
101 101
       if ($kintVar->type !== 'NULL') {
102
-        $output .= '<u>' . $kintVar->type;
102
+        $output .= '<u>'.$kintVar->type;
103 103
 
104 104
         if ($kintVar->size !== null) {
105
-          $output .= "(" . $kintVar->size . ")";
105
+          $output .= "(".$kintVar->size.")";
106 106
         }
107 107
 
108 108
         $output .= '</u>';
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
 
115
-    return $output . '</td>';
115
+    return $output.'</td>';
116 116
   }
117 117
 
118 118
   /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
    */
177 177
   private static function _parse_array(&$variable, KintVariableData $variableData)
178 178
   {
179
-    isset(self::$_marker) or self::$_marker = "\x00" . uniqid('kint', true);
179
+    isset(self::$_marker) or self::$_marker = "\x00".uniqid('kint', true);
180 180
 
181 181
     # naturally, $GLOBALS variable is an intertwined recursion nightmare, use black magic
182 182
     $globalsDetector = false;
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         &&
186 186
         is_array($variable['GLOBALS'])
187 187
     ) {
188
-      $globalsDetector = "\x01" . uniqid('kint', true);
188
+      $globalsDetector = "\x01".uniqid('kint', true);
189 189
 
190 190
       $variable['GLOBALS'][$globalsDetector] = true;
191 191
       if (isset($variable[$globalsDetector])) {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 
249 249
         $extendedValue .= '<tr>';
250 250
         if ($isSequential) {
251
-          $output = '<td>' . '#' . ($rowIndex + 1) . '</td>';
251
+          $output = '<td>'.'#'.($rowIndex + 1).'</td>';
252 252
         } else {
253 253
           $output = self::_decorateCell(KintParser::factory($rowIndex));
254 254
         }
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
         # as we only check the first two to assume
261 261
         foreach ($arrayKeys as $key) {
262 262
           if ($firstRow) {
263
-            $extendedValue .= '<th>' . self::escape($key) . '</th>';
263
+            $extendedValue .= '<th>'.self::escape($key).'</th>';
264 264
           }
265 265
 
266 266
           if (!isset($row[$key])) {
@@ -287,12 +287,12 @@  discard block
 block discarded – undo
287 287
           $firstRow = false;
288 288
         }
289 289
 
290
-        $extendedValue .= $output . '</tr>';
290
+        $extendedValue .= $output.'</tr>';
291 291
       }
292 292
       unset($row);
293 293
       self::$_placeFullStringInValue = false;
294 294
 
295
-      $variableData->extendedValue = $extendedValue . '</table>';
295
+      $variableData->extendedValue = $extendedValue.'</table>';
296 296
 
297 297
     } else {
298 298
       $variable[self::$_marker] = true;
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
         if (!$isSequential) {
312 312
           $output->operator = '=>';
313 313
         }
314
-        $output->name = $isSequential ? null : "'" . $key . "'";
314
+        $output->name = $isSequential ? null : "'".$key."'";
315 315
         $extendedValue[] = $output;
316 316
       }
317 317
       unset($val);
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
       $hash = $match[1];
395 395
     }
396 396
 
397
-    $castedArray = (array)$variable;
397
+    $castedArray = (array) $variable;
398 398
     $variableData->type = get_class($variable);
399 399
     $variableData->size = count($castedArray);
400 400
 
@@ -557,12 +557,12 @@  discard block
 block discarded – undo
557 557
 
558 558
     $encoding = self::_detectEncoding($variable);
559 559
     if ($encoding) {
560
-      $variableData->type .= ' [' . $encoding . ']';
560
+      $variableData->type .= ' ['.$encoding.']';
561 561
     }
562 562
 
563 563
     $variableData->size = UTF8::strlen($variable);
564 564
     if (Kint::enabled() !== Kint::MODE_RICH) {
565
-      $variableData->value = '"' . self::escape($variable, $encoding) . '"';
565
+      $variableData->value = '"'.self::escape($variable, $encoding).'"';
566 566
 
567 567
       return;
568 568
     }
@@ -579,20 +579,20 @@  discard block
 block discarded – undo
579 579
         $tmpStrippedString = self::_substr($strippedString, 0, Kint::$maxStrLength, $encoding);
580 580
 
581 581
         // encode and truncate
582
-        $variableData->value = '"' . self::escape($tmpStrippedString, $encoding) . '&hellip;"';
582
+        $variableData->value = '"'.self::escape($tmpStrippedString, $encoding).'&hellip;"';
583 583
         $variableData->extendedValue = self::escape($variable, $encoding);
584 584
 
585 585
         return;
586 586
       } elseif ($variable !== $strippedString) { // omit no data from display
587 587
 
588
-        $variableData->value = '"' . self::escape($variable, $encoding) . '"';
588
+        $variableData->value = '"'.self::escape($variable, $encoding).'"';
589 589
         $variableData->extendedValue = self::escape($variable, $encoding);
590 590
 
591 591
         return;
592 592
       }
593 593
     }
594 594
 
595
-    $variableData->value = '"' . self::escape($variable, $encoding) . '"';
595
+    $variableData->value = '"'.self::escape($variable, $encoding).'"';
596 596
   }
597 597
 
598 598
   /** @noinspection PhpUnusedPrivateMethodInspection */
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
   private static function _parse_unknown(&$variable, KintVariableData $variableData)
604 604
   {
605 605
     $type = gettype($variable);
606
-    $variableData->type = "UNKNOWN" . (!empty($type) ? " ({$type})" : '');
606
+    $variableData->type = "UNKNOWN".(!empty($type) ? " ({$type})" : '');
607 607
     $variableData->value = var_export($variable, true);
608 608
   }
609 609
 
@@ -688,12 +688,12 @@  discard block
 block discarded – undo
688 688
       $varType = 'unknown'; # PHP 5.4 inconsistency
689 689
     }
690 690
 
691
-    $methodName = '_parse_' . $varType;
691
+    $methodName = '_parse_'.$varType;
692 692
 
693 693
     # objects can be presented in a different way altogether, INSTEAD, not ALONGSIDE the generic parser
694 694
     if ($varType === 'object') {
695 695
       foreach (self::$_objectParsers as $parserClass) {
696
-        $className = 'kint\parsers\objects\Kint_Objects_' . $parserClass;
696
+        $className = 'kint\parsers\objects\Kint_Objects_'.$parserClass;
697 697
 
698 698
         /** @var $object KintObject */
699 699
         $object = new $className();
@@ -741,7 +741,7 @@  discard block
 block discarded – undo
741 741
 
742 742
       # now check whether the variable can be represented in a different way
743 743
       foreach (self::$_customDataTypes as $parserClass) {
744
-        $className = 'kint\parsers\custom\Kint_Parsers_' . $parserClass;
744
+        $className = 'kint\parsers\custom\Kint_Parsers_'.$parserClass;
745 745
 
746 746
         /** @var $parser KintParser */
747 747
 
Please login to merge, or discard this patch.