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
}