Completed
Pull Request — master (#377)
by Markus
03:25
created
src/ViewHelpers/DebugViewHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     protected static function getValuesOfNonScalarVariable($variable)
171 171
     {
172 172
         if ($variable instanceof \ArrayObject || \is_array($variable)) {
173
-            return (array)$variable;
173
+            return (array) $variable;
174 174
         }
175 175
 
176 176
         if ($variable instanceof \Iterator) {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             return [
186 186
                 'class' => \get_class($variable),
187 187
                 'ISO8601' => $variable->format(\DateTime::ISO8601),
188
-                'UNIXTIME' => (integer)$variable->format('U')
188
+                'UNIXTIME' => (integer) $variable->format('U')
189 189
             ];
190 190
         }
191 191
 
Please login to merge, or discard this patch.