14 lines
221 B
PHP
14 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use Ardent\Undercurrent\Attribute\Route;
|
||
|
|
||
|
class BaseController
|
||
|
{
|
||
|
#[Route('/hello')]
|
||
|
public function HelloWorld(): string
|
||
|
{
|
||
|
return 'Hello, World!';
|
||
|
}
|
||
|
}
|