- Added a try/catch on the Kernel load

This commit is contained in:
Dave M. 2022-03-15 15:18:52 +00:00
parent 9f6d873a98
commit 06313396f5
1 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
<?php
require_once("../src/Kernel.php");
try {
require_once("../src/Kernel.php");
}
catch(\Throwable $t) {
echo $t->getMessage();
}