| 1 | <?php |
||
| 4 | class HelloWorld |
||
| 5 | {
|
||
| 6 | /** @var string Type of person to say hello to */ |
||
| 7 | public static $type = 'Acolyte'; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Simple method to say hello |
||
| 11 | * |
||
| 12 | * @param string|null $name The name to say hello to |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | 2 | public static function sayHello($name = null) |
|
| 19 | } |
||
| 20 |