13 lines
188 B
PHP
13 lines
188 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Routing\Fixtures\Controllers\One;
|
|
|
|
use PhpMyAdmin\Routing\Route;
|
|
|
|
#[Route('/bar-route', ['GET'])]
|
|
final class BarController
|
|
{
|
|
}
|