9 lines
138 B
PHP
9 lines
138 B
PHP
<?php
|
|
|
|
class StaticGreeting
|
|
{
|
|
public static function say(string $who) :string
|
|
{
|
|
return "Hello, $who!</br></br>";
|
|
}
|
|
} |