1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-16 19:54:38 +02:00

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

View File

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