<?php class B { public readonly int $x; public function getX(): int { return $this->x; } } class C extends B { // Redeclare to make it writable. public readonly int $x; public function __construct() { $this->x = 5; } } $c = new C; print $c->getX();
You have javascript disabled. You will not be able to edit any code.