summaryrefslogtreecommitdiff
path: root/documentation/classes-and-objects.html
diff options
context:
space:
mode:
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 &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