Merge pull request #3019 from mvhirsch/unify-namespace-exceptions

[en-en/php] unifies namespace variants in exception handling
This commit is contained in:
Pratik Karki 2018-02-28 15:16:46 +05:45 committed by GitHub
commit 371620a6e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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