Files
pest/tests/Fixtures/Tia/app/app/Greeter.php
T
nuno maduro d112582857 wip
2026-08-05 19:58:57 +01:00

14 lines
186 B
PHP

<?php
declare(strict_types=1);
namespace Fixture\App;
final class Greeter
{
public function greet(string $name): string
{
return sprintf('Hello, %s!', $name);
}
}