9 lines
219 B
PHP
9 lines
219 B
PHP
<?php
|
|
$app = require_once implode(DIRECTORY_SEPARATOR, [
|
|
dirname(__FILE__, 2),
|
|
'setup',
|
|
'app.php'
|
|
]);
|
|
#$app->getContainer()->get(\Psr\Log\LoggerInterface::class)->debug(var_export($app, true));
|
|
$app->run();
|