diff --git a/src/MemoryManager.php b/src/MemoryManager.php index 90acbc9397..b6718774c8 100644 --- a/src/MemoryManager.php +++ b/src/MemoryManager.php @@ -406,14 +406,6 @@ class MemoryManager{ "properties" => [] ]; - if(($parent = $reflection->getParentClass()) !== false){ - $info["parent"] = $parent->getName(); - } - - if(count($reflection->getInterfaceNames()) > 0){ - $info["implements"] = implode(", ", $reflection->getInterfaceNames()); - } - for($original = $reflection; $reflection !== false; $reflection = $reflection->getParentClass()){ foreach($reflection->getProperties() as $property){ if($property->isStatic()){