From caae7d9696b62ccb2ba263a43e3a94d494589584 Mon Sep 17 00:00:00 2001 From: Malcolm Fell Date: Fri, 28 Jun 2013 09:21:09 +1200 Subject: Use sinlge line breaks for clarity --- php.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'php.html.markdown') 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 -- cgit v1.2.3