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