<?php class Test{ public function __construct(protected string $name){} } var_dump(new Test('a') == new Test('a')); var_dump(new Test('a') == new Test('b'));
You have javascript disabled. You will not be able to edit any code.