<?php class Foo { private int $num; public function __construct(int $num) { $this->num = $num; } } var_dump(new Foo(1) == new Foo(2));
You have javascript disabled. You will not be able to edit any code.