Files
oficial/app/public/index.php
Juan Pablo Vial fa15da1ee2 Ventas
2023-09-07 23:03:21 -03:00

16 lines
436 B
PHP

<?php
$app = require_once implode(DIRECTORY_SEPARATOR, [
dirname(__FILE__, 2),
'setup',
'app.php'
]);
try {
$app->run();
} catch (Error $error) {
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($error);
header('Location: /construccion');
} catch (Exception $exception) {
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->notice($exception);
header('Location: /construccion');
}