<?php class Foo { public int $bar { get => $this->bar; set => empty($this->bar) ? $this->bar = $value : throw new LogicException("nope"); } } $foo = new Foo; $foo->bar = 0; var_dump($foo->bar); $foo->bar = 1; // no error ! var_dump($foo->bar);
You have javascript disabled. You will not be able to edit any code.