12 lines
344 B
PHP
12 lines
344 B
PHP
<?php
|
|
|
|
try {
|
|
$projectPath = dirname(__DIR__);
|
|
|
|
require_once $projectPath . '/vendor/autoload.php';
|
|
|
|
new class($projectPath) extends %NAMESPACE%\Kernel {};
|
|
}
|
|
catch(\Throwable $t) {
|
|
echo sprintf("%s in <strong>%s</strong> <pre>%s</pre>", $t->getMessage(), $t->getFile() . ":" . $t->getLine(), $t->getTraceAsString());
|
|
} |