MemoryManager: remove class name from object references

it's possible to see this information by looking up the hash, which it's necessary to do in order to see any interesting information anyway.
This commit is contained in:
Dylan K. Taylor 2020-07-13 11:51:25 +01:00
parent efd67a132e
commit 1050485164

View File

@ -461,7 +461,7 @@ class MemoryManager{
++$refCounts[$hash];
$data = "(object) $hash@" . get_class($from);
$data = "(object) $hash";
}elseif(is_array($from)){
if($recursion >= 5){
return "(error) ARRAY RECURSION LIMIT REACHED";