<?php class SetOnce { private $value; public function __construct($value) { $this->value = $value; } public function getValue() { return $this->value; } } class Foo { proteced $bar; function __construct($val) { $this->bar = new SetOnce($val * 2); } function getBar() { return $bar->getValue(); } }
You have javascript disabled. You will not be able to edit any code.