summaryrefslogtreecommitdiff
path: root/documentation/classes-and-objects.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 18:14:12 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 18:14:12 +0100
commit835c89522e53f267332b2f1690d296416903b96f (patch)
tree8ab67feaa8e0ebc4126c13260fbd045c2f67cebc /documentation/classes-and-objects.html
parentc3f87faa5ae3a88fbd85ce67349ecb42bc6c1138 (diff)
changes to documentation
Diffstat (limited to 'documentation/classes-and-objects.html')
-rw-r--r--documentation/classes-and-objects.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/documentation/classes-and-objects.html b/documentation/classes-and-objects.html
index 6cbcc7d..ebb5952 100644
--- a/documentation/classes-and-objects.html
+++ b/documentation/classes-and-objects.html
@@ -81,12 +81,10 @@ Php::Value YourClass::example8(Php::Parameters &amp;params) const;
</code></pre>
</p>
<p>
- In the example we have used the third and seventh method forms, methods that do
- not accept any parameters, and that return a Php::Value object. Methods
- work exactly the same as <a href="functions">regular functions</a>, with the
- difference that in the methods you have (of course) access to the member
+ Methods work exactly the same as <a href="functions">regular functions</a>, with the
+ difference that in a method you have (of course) access to the member
variables of the object (and in C++ you you do not have to use "this->"
- explicitly to access members).
+ to access member variables).
</p>
<p>
To make the class accessible from PHP, you must add it to the extension