- Added a try/catch on the Kernel load
This commit is contained in:
parent
9f6d873a98
commit
06313396f5
|
@ -1,3 +1,8 @@
|
|||
<?php
|
||||
|
||||
require_once("../src/Kernel.php");
|
||||
try {
|
||||
require_once("../src/Kernel.php");
|
||||
}
|
||||
catch(\Throwable $t) {
|
||||
echo $t->getMessage();
|
||||
}
|
Loading…
Reference in New Issue