Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit d8e542d

Browse files
committed
Merge branch '2.8' into 3.0
* 2.8: [Yaml] fix exception contexts People - person singularization [Yaml] properly handle unindented collections [Serializer] Add test for ignored attributes during denormalization chomp newlines only at the end of YAML documents Fixed server status command when port has been omitted Update UPGRADE FROM 2.x to 3.0 fix removed commands wording in upgrade file Catch \Throwable Catch \Throwable Use levenshtein level for better Bundle matching [WebProfilerBundle] Fix CORS ajax security issues [DX][DI] Make Autowiring exceptions more future friendly
2 parents a5f488f + 2a1b327 commit d8e542d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ErrorHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,8 @@ public static function handleFatalError(array $error = null)
580580
}
581581
} catch (\Exception $exception) {
582582
// Handled below
583+
} catch (\Throwable $exception) {
584+
// Handled below
583585
}
584586

585587
if ($error && $error['type'] &= E_PARSE | E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR) {

0 commit comments

Comments
 (0)