for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jidaikobo\Kontiki\Controllers\Routes;
use Slim\Routing\RouteCollectorProxy;
class IndexReservedRoutes
{
public static function register(
RouteCollectorProxy $app,
string $basePath,
string $controllerClass
): void {
$app->get("/{$basePath}/index/reserved", [$controllerClass, 'indexReserved']);
}