<?php declare(strict_types=1); class SomeImmutableObject { private $someString; public function __construct(string $value) { $this->someString = $value; } public function getValue(): string { return 'the value is:' . $this->someString . ' - '; } } $one = new SomeImmutableObject('Foo'); echo $one->getValue(); //Foo $one->__construct('Bar'); echo $one->getValue(); //Bar
You have javascript disabled. You will not be able to edit any code.