/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
symfony
/
http-kernel
/
Tests
/
Fixtures
/
Upload File
HOME
<?php namespace Symfony\Component\HttpKernel\Tests\Fixtures; class UsePropertyInDestruct { public string $name; public $parent = null; public function __destruct() { if ($this->parent !== null) { $this->parent->name = ''; } } }