diff options
-rw-r--r-- | php.html.markdown | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/php.html.markdown b/php.html.markdown index ec9c77e7..491255e9 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -367,10 +367,11 @@ Classes are insantiated with the ```new``` keyword. Functions are referred to as ```php class MyClass { - function myFunction() { + function myFunction() + { } - function function youCannotOverrideMe() + final function youCannotOverrideMe() { } |