Passed
Push — master ( f5e0e8...9bf844 )
by Waaaaaaaaaa
06:37
created
src/Frame.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         $count = count($value);
114 114
 
115 115
         if ($count > 100) {
116
-            return 'Array of length ' . $count;
116
+            return 'Array of length '.$count;
117 117
         }
118 118
 
119 119
         $types = [];
@@ -129,10 +129,10 @@  discard block
 block discarded – undo
129 129
         }
130 130
 
131 131
         if (count($types) > 3) {
132
-            return 'Mixed Array of length ' . $count;
132
+            return 'Mixed Array of length '.$count;
133 133
         }
134 134
 
135
-        return 'Array<'.implode('|', $types).'> of length ' . $count;
135
+        return 'Array<'.implode('|', $types).'> of length '.$count;
136 136
     }
137 137
 
138 138
     protected function normalise($value): string
Please login to merge, or discard this patch.