Translated using Weblate (Slovenian)
[phpmyadmin.git] / index.php
bloba8722c571998b663fddf15ce30a2ff6ae577d91f
1 <?php
3 declare(strict_types=1);
5 use PhpMyAdmin\Routing;
7 if (! defined('ROOT_PATH')) {
8 // phpcs:disable PSR1.Files.SideEffects
9 define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
10 // phpcs:enable
13 global $route, $containerBuilder;
15 require_once ROOT_PATH . 'libraries/common.inc.php';
17 $dispatcher = Routing::getDispatcher();
18 Routing::callControllerForRoute($route, $dispatcher, $containerBuilder);