mirror of
https://github.com/igorsimdyanov/php8.git
synced 2026-01-14 03:00:06 +00:00
8 lines
131 B
PHP
8 lines
131 B
PHP
<?php
|
|
class Greeting {
|
|
public readonly string $hello;
|
|
public function __construct() {
|
|
$this->hello = 'PHP';
|
|
}
|
|
}
|