try to catch test server exceptions

This commit is contained in:
Dennis Eichhorn 2022-09-30 18:06:55 +02:00
parent 01615d3df7
commit ed2e2375b2

View File

@ -421,4 +421,8 @@ function phpServe() : void
});
}
\phpServe();
try {
\phpServe();
} catch(Throwable $t) {
echo $t->getMessage();
}