<?php final class SomeFixture { private readonly string $name; public function getName(): string { return $this->name; } public function setName(string $name): void { $this->name = ucfirst($name); } } $s = new SomeFixture(); $s->setName('test');
You have javascript disabled. You will not be able to edit any code.