Files
new.rybstock.ru/public/index.php
T
2026-06-04 01:30:45 +03:00

18 lines
534 B
PHP

<?php
declare(strict_types=1);
use App\Controllers\CatalogController;
use App\Controllers\HomeController;
use App\Core\Router;
require_once dirname(__DIR__) . '/app/bootstrap.php';
$router = new Router();
$router->get('/', static fn () => (new HomeController())->index());
$router->get('/catalog', static fn () => (new CatalogController())->index());
$router->get('/catalog/{slug}', static fn (string $slug) => (new CatalogController())->category($slug));
$router->dispatch($_SERVER['REQUEST_METHOD'], $_SERVER['REQUEST_URI']);