23 lines
882 B
PHP
23 lines
882 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Controllers\CatalogController;
|
|
use App\Controllers\HomeController;
|
|
use App\Controllers\PageController;
|
|
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('/delivery', static fn () => (new PageController())->delivery());
|
|
$router->get('/payment', static fn () => (new PageController())->payment());
|
|
$router->get('/contacts', static fn () => (new PageController())->contacts());
|
|
$router->get('/returns', static fn () => (new PageController())->returns());
|
|
$router->get('/catalog/{slug}', static fn (string $slug) => (new CatalogController())->category($slug));
|
|
|
|
$router->dispatch($_SERVER['REQUEST_METHOD'], $_SERVER['REQUEST_URI']);
|