1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?phpnamespace Symfony\Component\VarDumper\Tests\Fixtures;class Php74{ public $p1 = 123; public \stdClass $p2; public function __construct() { $this->p2 = new \stdClass(); }}