13 lines
251 B
PHP
13 lines
251 B
PHP
<?php
|
|
$app = require_once implode(DIRECTORY_SEPARATOR, [
|
|
dirname(__DIR__),
|
|
'bootstrap',
|
|
'app.php'
|
|
]);
|
|
try {
|
|
$app->run();
|
|
} catch (Exception $e) {
|
|
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
|
|
exit(1);
|
|
}
|