fn-php/index.php
fnkit da342bba2c
Some checks failed
/ deploy (push) Failing after 13s
initial commit - php function
2026-02-17 16:45:14 +00:00

8 lines
155 B
PHP

<?php
use Psr\Http\Message\ServerRequestInterface;
function helloHttp(ServerRequestInterface $request): string
{
return "Hello, World!" . PHP_EOL;
}