<?php $foo = new CatchMeIfYouCan(); var_dump($foo->bar); final class CatchMeIfYouCan { private int $_bar; private(set) int $bar { get => $this->_bar ??= $this->fooBar(); set { $this->_bar = $value; } } public function fooBar(): int { isset($this->_bar); return 42; } }
You have javascript disabled. You will not be able to edit any code.