1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-24 08:31:36 +02:00

unifies namespace variants in exception handling

This commit is contained in:
Michael Hirschler
2017-12-03 11:23:03 +01:00
parent 990f51293b
commit 973883c57c

View File

@@ -841,7 +841,7 @@ try {
try {
// Do something
} catch (\Exception $e) {
} catch (Exception $e) {
// Handle exception
}