21 lines
355 B
PHP
21 lines
355 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace StackTest\DemoPackage;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Demo class for Stack.Gallery Registry e2e tests.
|
||
|
|
*/
|
||
|
|
class Demo
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Greet the given name.
|
||
|
|
*
|
||
|
|
* @param string $name The name to greet
|
||
|
|
* @return string A greeting message
|
||
|
|
*/
|
||
|
|
public static function greet(string $name): string
|
||
|
|
{
|
||
|
|
return "Hello, {$name}!";
|
||
|
|
}
|
||
|
|
}
|