summaryrefslogtreecommitdiffhomepage
path: root/php.html.markdown
diff options
context:
space:
mode:
authorMalcolm Fell <malcolm@vendhq.com>2013-06-28 09:21:09 +1200
committerMalcolm Fell <malcolm@vendhq.com>2013-06-28 09:21:09 +1200
commitcaae7d9696b62ccb2ba263a43e3a94d494589584 (patch)
tree7f397e38ffc8fda2baf1dd7bde2341df3136aa33 /php.html.markdown
parent23e822bcc1c3d0c2fdee2eed474c9debc36818b1 (diff)
Use sinlge line breaks for clarity
Diffstat (limited to 'php.html.markdown')
-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