Files
php_8/classes/readonly_constructor.php
2022-04-23 14:36:27 +03:00

8 lines
131 B
PHP

<?php
class Greeting {
public readonly string $hello;
public function __construct() {
$this->hello = 'PHP';
}
}