@@ -68,13 +68,13 @@ |
||
68 | 68 | ); |
69 | 69 | $exported = []; |
70 | 70 | foreach ($props as $value) { |
71 | - $name = dechex($value->getModifiers()) . '$' . $value->getName(); |
|
71 | + $name = dechex($value->getModifiers()).'$'.$value->getName(); |
|
72 | 72 | $value->setAccessible(true); |
73 | 73 | $exported[$name] = new DebugObject($value->getValue($object), $this->context); |
74 | 74 | } |
75 | 75 | return $exported; |
76 | 76 | } catch (\ReflectionException $e) { |
77 | - return 'Err:' . $e->getMessage(); |
|
77 | + return 'Err:'.$e->getMessage(); |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 |