summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--php.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown
index 491255e9..c6c70cbb 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -411,7 +411,8 @@ echo $x->property; // Will use the __get() method to retrieve the value of $prop
$x->property = 'Something'; // Will use the __set() method to set the value of property
```
-Classes can be abstract (using the ```abstract``` keyword), extend other classes (using the ```extends``` keyword) and implement interfaces (using the ```implements``` keyword). An interface is declared with the ```interface``` keyword.
+Classes can be abstract (using the ```abstract``` keyword), extend other classes (using the ```extends``` keyword) and
+implement interfaces (using the ```implements``` keyword). An interface is declared with the ```interface``` keyword.
```php
interface InterfaceOne