19 lines
408 B
PHP
19 lines
408 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
use Symfony\Component\Routing\Annotation\Route;
|
||
|
|
||
|
class MainController
|
||
|
{
|
||
|
#[Route('/{max}', name: 'app_lucky_number')]
|
||
|
public function number(int $max): Response
|
||
|
{
|
||
|
$number = random_int(0, $max);
|
||
|
|
||
|
return new Response(
|
||
|
'<html><body>Lucky number: '.$number.'</body></html>'
|
||
|
);
|
||
|
}
|
||
|
}
|