### Description The following code: ```php <?php class MemoryLeak { public function __construct() { $this->things[] = $this; } public function __destruct() { $fusion->things[] = null; } } for ($i = 0; $i < 100000; ++$i) { $obj = new MemoryLeak(); } ``` Resulted in this output: https://3v4l.org/9eRM1/rfc#vgit.master ### PHP Version PHP 8.4.0-dev ### Operating System ubuntu 22.04