8 lines
120 B
PHP
8 lines
120 B
PHP
<?php
|
|
class GreatingConst
|
|
{
|
|
public readonly string $hello;
|
|
public function __construct() {
|
|
$this->hello = "PHP";
|
|
}
|
|
} |