Files
php_8/methods/static_greeting.php
2022-05-02 09:09:39 +03:00

9 lines
121 B
PHP

<?php
class Greeting
{
public static function say(string $who) : string
{
return "Hello, $who!";
}
}