phpmyadmin/tests/unit/Routing/Fixtures/Controllers/One/Two/VariableController.php
Maurício Meneghini Fauth a8b338cb40
Add the Route attribute to controllers classes
Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2025-07-11 19:47:12 -03:00

13 lines
221 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Routing\Fixtures\Controllers\One\Two;
use PhpMyAdmin\Routing\Route;
#[Route('/route-with-var/{variable}', ['GET', 'POST'])]
final class VariableController
{
}