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

8 lines
126 B
PHP

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