composer update

This commit is contained in:
2020-12-06 10:28:55 +00:00
parent 69d92960d9
commit 09413522bb
1596 changed files with 60456 additions and 39587 deletions

View File

@@ -23,13 +23,13 @@ class ThrowableUtils
}
if ($throwable instanceof \ParseError) {
return E_PARSE;
return \E_PARSE;
}
if ($throwable instanceof \TypeError) {
return E_RECOVERABLE_ERROR;
return \E_RECOVERABLE_ERROR;
}
return E_ERROR;
return \E_ERROR;
}
}