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