Catch all errors.

This commit is contained in:
Alexander Pankratov 2020-01-13 20:48:06 +03:00
parent 4a8057c0bf
commit 1844a1665f

View File

@ -191,11 +191,6 @@ class ApiController
*/
private function setError(\Throwable $e): self
{
if ($e instanceof \Error) {
//Это критическая ошибка соедниения. Необходим полный перезапуск.
throw $e;
}
$this->setPageCode(400);
$this->page['errors'][] = [
'code' => $e->getCode(),