From c6583b18b9524f0ffb5ce460b12c619a543bf89a Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Thu, 26 Aug 2004 17:42:44 +0000 Subject: [PATCH] typo, link to reserved words git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@167311 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/basic.xml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/language/oop5/basic.xml b/language/oop5/basic.xml index 2f0ceb3516..31fa62cf21 100644 --- a/language/oop5/basic.xml +++ b/language/oop5/basic.xml @@ -1,5 +1,5 @@ - + The Basics @@ -8,12 +8,13 @@ class Every class definition begins with the keyword class, followed by a class - name, which can be any name that isn't a reserverd word in PHP. Followed - by A pair of curly braces, of which contains the definition of the classes - members and methods. Within each method, except for static methods, a psudo variable - $this is available. $this is a - reference to the same instance that called the method. + name, which can be any name that isn't a + reserverd word in PHP. Followed by a pair of curly braces, of + which contains the definition of the classes members and methods. Within + each method, except for static + methods, a pseudo variable $this is available. + $this is a reference to the same instance that + called the method. Simple Class definition @@ -140,7 +141,7 @@ a default value - +