9 lines
111 B
PHP
9 lines
111 B
PHP
<?php
|
|
class Greating
|
|
{
|
|
public readonly string $hello;
|
|
public function setter() {
|
|
$this->hello = "PHP";
|
|
}
|
|
}
|