damek24
damek24
this case: ```php public string $id { get => isset($this->id) ? $this->id : ''; set => $this->id = $value; } ``` works this case (normal type properties) ```php public string...
I understand the reasoning from the language design perspective, but from a PHP user point of view this remains a surprising and undocumented behavior. I don’t plan to dig into...
Thanks for reopening this issue. Having this behavior documented somewhere in the PHP documentation would be more than enough for me as a PHP user building my own framework. Thanks...