diff options
author | Pratik Karki <predatoramigo@gmail.com> | 2018-02-28 15:16:46 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 15:16:46 +0545 |
commit | 371620a6e3c0cd8f609ee79a72992f953eb6e7e5 (patch) | |
tree | 03accbcfda6ae0313b47a87241da11e2fb66e13c | |
parent | bcd41be2233b722a14146a5f82d8365ab616a7e6 (diff) | |
parent | 973883c57cef5caa01e60856fbd0884fff26809c (diff) |
Merge pull request #3019 from mvhirsch/unify-namespace-exceptions
[en-en/php] unifies namespace variants in exception handling
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index f82cea7d..d4fbaa32 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -841,7 +841,7 @@ try { try { // Do something -} catch (\Exception $e) { +} catch (Exception $e) { // Handle exception } |