Files
emails/ui/public/index.php

13 lines
337 B
PHP
Raw Normal View History

2022-11-09 15:22:58 -03:00
<?php
$app = require_once implode(DIRECTORY_SEPARATOR, [
dirname(__FILE__, 2),
'setup',
'app.php'
]);
2022-11-29 11:12:06 -03:00
Monolog\ErrorHandler::register($app->getContainer()->get(Psr\Log\LoggerInterface::class));
try {
$app->run();
} catch (Error | Exception $e) {
2023-06-12 21:14:07 -04:00
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
2022-11-29 11:12:06 -03:00
}