Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Charl
allworldit
Commits
d492a2f1
Commit
d492a2f1
authored
Jul 09, 2014
by
Charl
Browse files
Added try/catch documentation in section 7.3
parent
87977a3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Languages/PHP.md
View file @
d492a2f1
...
@@ -327,6 +327,16 @@ if ($condition) {
...
@@ -327,6 +327,16 @@ if ($condition) {
}
}
```
```
### 7.3. When using try/catch the opening brace must be on the same line as try and the catch's opening brace
on the same line as the try's closing brace
```
try {
} catch (Exception $ex) {
}
```
## 99. End Of File
## 99. End Of File
To make life easier with tabs, files must contain
To make life easier with tabs, files must contain
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment