Completed
Push — master ( 7c3177...d4087b )
by Lars
02:52
created
src/kint/parsers/custom/Kint_Parsers_ClassStatics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
       }
40 40
 
41 41
       $_ = $property->getValue();
42
-      $output = KintParser::factory($_, '$' . $property->getName());
42
+      $output = KintParser::factory($_, '$'.$property->getName());
43 43
 
44 44
       $output->access = $access;
45 45
       $output->operator = '::';
Please login to merge, or discard this patch.
src/kint/parsers/custom/Kint_Parsers_Color.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -388,9 +388,9 @@
 block discarded – undo
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
   /**
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -227,8 +227,8 @@  discard block
 block discarded – undo
227 227
 
228 228
     return array(
229 229
         round($H * 360),
230
-        round($S * 100) . '%',
231
-        round($L * 100) . '%',
230
+        round($S * 100).'%',
231
+        round($L * 100).'%',
232 232
     );
233 233
   }
234 234
 
@@ -263,9 +263,9 @@  discard block
 block discarded – undo
263 263
         $colors = str_split($color, 2);
264 264
       } else {
265 265
         $colors = array(
266
-            $color[0] . $color[0],
267
-            $color[1] . $color[1],
268
-            $color[2] . $color[2],
266
+            $color[0].$color[0],
267
+            $color[1].$color[1],
268
+            $color[2].$color[2],
269 269
         );
270 270
       }
271 271
 
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
           } else {
335 335
             $a = '';
336 336
           }
337
-          $variant = "rgb{$a}( " . implode(', ', $rgb) . " )";
337
+          $variant = "rgb{$a}( ".implode(', ', $rgb)." )";
338 338
           break;
339 339
         case 'hsl':
340 340
           $rgb = self::_RGBtoHSL($decimalColors);
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
             $a = '';
350 350
           }
351 351
 
352
-          $variant = "hsl{$a}( " . implode(', ', $rgb) . " )";
352
+          $variant = "hsl{$a}( ".implode(', ', $rgb)." )";
353 353
           break;
354 354
         case 'name':
355 355
           // [!] name in initial variants array must go after hex
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         ||
379 379
         is_array($variable)
380 380
         ||
381
-        (string)$variable === $variable
381
+        (string) $variable === $variable
382 382
     ) {
383 383
       return false;
384 384
     }
Please login to merge, or discard this patch.
src/kint/parsers/custom/Kint_Parsers_ClassMethods.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,26 +52,26 @@  discard block
 block discarded – undo
52 52
             try {
53 53
               $paramClassName = $param->getClass();
54 54
               if ($paramClassName) {
55
-                $paramString .= $paramClassName->name . ' ';
55
+                $paramString .= $paramClassName->name.' ';
56 56
               }
57 57
             } catch (\ReflectionException $e) {
58
-              preg_match('/\[\s\<\w+?>\s([\w]+)/', (string)$param, $matches);
58
+              preg_match('/\[\s\<\w+?>\s([\w]+)/', (string) $param, $matches);
59 59
               $paramClassName = isset($matches[1]) ? $matches[1] : '';
60 60
 
61
-              $paramString .= ' UNDEFINED CLASS (' . $paramClassName . ') ';
61
+              $paramString .= ' UNDEFINED CLASS ('.$paramClassName.') ';
62 62
             }
63 63
           }
64 64
 
65
-          $paramString .= ($param->isPassedByReference() ? '&' : '') . '$' . $param->getName();
65
+          $paramString .= ($param->isPassedByReference() ? '&' : '').'$'.$param->getName();
66 66
 
67 67
           if ($param->isDefaultValueAvailable()) {
68 68
             if (is_array($param->getDefaultValue())) {
69 69
               $arrayValues = array();
70 70
               foreach ($param->getDefaultValue() as $key => $value) {
71
-                $arrayValues[] = $key . ' => ' . $value;
71
+                $arrayValues[] = $key.' => '.$value;
72 72
               }
73 73
 
74
-              $defaultValue = 'array(' . implode(', ', $arrayValues) . ')';
74
+              $defaultValue = 'array('.implode(', ', $arrayValues).')';
75 75
             } elseif ($param->getDefaultValue() === null) {
76 76
               $defaultValue = 'NULL';
77 77
             } elseif ($param->getDefaultValue() === false) {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
               $defaultValue = $param->getDefaultValue();
85 85
             }
86 86
 
87
-            $paramString .= ' = ' . $defaultValue;
87
+            $paramString .= ' = '.$defaultValue;
88 88
           }
89 89
 
90 90
           $params[] = $paramString;
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
           }
108 108
         }
109 109
 
110
-        $output->name = ($method->returnsReference() ? '&' : '') . $method->getName() . '('
111
-                        . implode(', ', $params) . ')';
110
+        $output->name = ($method->returnsReference() ? '&' : '').$method->getName().'('
111
+                        . implode(', ', $params).')';
112 112
         $output->access = $access;
113 113
 
114 114
         if (is_string($docBlock)) {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             $lines[] = self::escape(trim($line), 'UTF-8');
126 126
           }
127 127
 
128
-          $output->extendedValue = implode("\n", $lines) . "\n\n";
128
+          $output->extendedValue = implode("\n", $lines)."\n\n";
129 129
         }
130 130
 
131 131
         $declaringClass = $method->getDeclaringClass();
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
           $output->extendedValue .= "<small>Inherited from <i>{$declaringClassName}</i></small>\n";
137 137
         }
138 138
 
139
-        $fileName = Kint::shortenPath($method->getFileName()) . ':' . $method->getStartLine();
139
+        $fileName = Kint::shortenPath($method->getFileName()).':'.$method->getStartLine();
140 140
         /** @noinspection PhpToStringImplementationInspection */
141 141
         $output->extendedValue .= "<small>Defined in {$fileName}</small>";
142 142
 
143
-        $sortName = $access . $method->getName();
143
+        $sortName = $access.$method->getName();
144 144
 
145 145
         if ($method->isPrivate()) {
146 146
           $private[$sortName] = $output;
Please login to merge, or discard this patch.
src/kint/parsers/custom/Kint_Parsers_Microtime.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         ||
25 25
         is_array($variable)
26 26
         ||
27
-        (string)$variable !== $variable
27
+        (string) $variable !== $variable
28 28
         ||
29 29
         !preg_match('[0\.[0-9]{8} [0-9]{10}]', $variable)
30 30
     ) {
@@ -33,29 +33,29 @@  discard block
 block discarded – undo
33 33
 
34 34
     list($usec, $sec) = explode(" ", $variable);
35 35
 
36
-    $time = (float)$usec + (float)$sec;
36
+    $time = (float) $usec + (float) $sec;
37 37
     $size = memory_get_usage(true);
38 38
 
39 39
     # '@' is used to prevent the dreaded timezone not set error
40 40
     /** @noinspection PhpUsageOfSilenceOperatorInspection */
41
-    $this->value = @date('Y-m-d H:i:s', $sec) . '.' . substr($usec, 2, 4);
41
+    $this->value = @date('Y-m-d H:i:s', $sec).'.'.substr($usec, 2, 4);
42 42
 
43 43
     $numberOfCalls = count(self::$_times);
44 44
     if ($numberOfCalls > 0) { # meh, faster than count($times) > 1
45 45
       $lap = $time - end(self::$_times);
46 46
       self::$_laps[] = $lap;
47 47
 
48
-      $this->value .= "\n<b>SINCE LAST CALL:</b> <b class=\"kint-microtime\">" . round($lap, 4) . '</b>s.';
48
+      $this->value .= "\n<b>SINCE LAST CALL:</b> <b class=\"kint-microtime\">".round($lap, 4).'</b>s.';
49 49
       if ($numberOfCalls > 1) {
50
-        $this->value .= "\n<b>SINCE START:</b> " . round($time - self::$_times[0], 4) . 's.';
50
+        $this->value .= "\n<b>SINCE START:</b> ".round($time - self::$_times[0], 4).'s.';
51 51
         $this->value .= "\n<b>AVERAGE DURATION:</b> "
52
-                        . round(array_sum(self::$_laps) / $numberOfCalls, 4) . 's.';
52
+                        . round(array_sum(self::$_laps) / $numberOfCalls, 4).'s.';
53 53
       }
54 54
     }
55 55
 
56 56
     $unit = array('B', 'KB', 'MB', 'GB', 'TB');
57
-    $memTmp = round($size / pow(1024, $i = (int)floor(log($size, 1024))), 3);
58
-    $this->value .= "\n<b>MEMORY USAGE:</b> " . $size . " bytes (" . $memTmp . ' ' . $unit[$i] . ")";
57
+    $memTmp = round($size / pow(1024, $i = (int) floor(log($size, 1024))), 3);
58
+    $this->value .= "\n<b>MEMORY USAGE:</b> ".$size." bytes (".$memTmp.' '.$unit[$i].")";
59 59
 
60 60
     self::$_times[] = $time;
61 61
     $this->type = 'Stats';
Please login to merge, or discard this patch.
src/kint/parsers/objects/Kint_Objects_Smarty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /** @noinspection PhpUndefinedClassInspection */
29
-    $this->name = 'object Smarty (v' . substr(Smarty::SMARTY_VERSION, 7) . ')'; # trim 'Smarty-'
29
+    $this->name = 'object Smarty (v'.substr(Smarty::SMARTY_VERSION, 7).')'; # trim 'Smarty-'
30 30
 
31 31
     $assigned = $globalAssigns = array();
32 32
     /** @noinspection PhpUndefinedFieldInspection */
Please login to merge, or discard this patch.
src/kint/parsers/objects/Kint_Objects_Closure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
     $val = $reflection->getFileName();
53 53
     if ($val) {
54
-      $this->value = Kint::shortenPath($val) . ':' . $reflection->getStartLine();
54
+      $this->value = Kint::shortenPath($val).':'.$reflection->getStartLine();
55 55
     }
56 56
 
57 57
     return $ret;
Please login to merge, or discard this patch.