Files
breadcrumb-the-shire/lib/Support/Hello.php
2026-02-04 23:31:53 +01:00

14 lines
199 B
PHP

<?php
namespace MintyPHP\Support;
class Hello
{
public static $name = 'MintyPHP';
public static function getGreeting(): string
{
return 'Hello ' . static::$name . '!';
}
}