<?php class HelloWorld { readonly public string $say; public function __construct() { $this->say = 'Hello World'; } } class HelloNewWorld extends HelloWorld { public function __construct(readonly public string $say = 'Hello New World') { } } echo (new HelloWorld())->say . PHP_EOL; echo (new HelloNewWorld())->say . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.