<?php final class Thing { private string $state; public function __construct() { $this->state = 'foo'; } public function __set(string $property, $value) : void { $this->$property = $value; } } var_dump(new Thing());
You have javascript disabled. You will not be able to edit any code.