<?php class Foo implements Stringable { public function __toString(): string { return 'Bar';} } class Bar {} $o = new Foo; echo (new ($o))::class;
You have javascript disabled. You will not be able to edit any code.