summaryrefslogtreecommitdiff
path: root/documentation/magic-methods.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-11 23:59:17 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-11 23:59:17 +0100
commit147f9395449db7fcb32957ae840017cff2740831 (patch)
tree93c20a93627a5477d499f2b81ed1f430461e8145 /documentation/magic-methods.html
parent2c23473633f69baa7c73436292badb568be5bdca (diff)
modified magic method documentation
Diffstat (limited to 'documentation/magic-methods.html')
-rw-r--r--documentation/magic-methods.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/magic-methods.html b/documentation/magic-methods.html
index ecfead1..0e7b61f 100644
--- a/documentation/magic-methods.html
+++ b/documentation/magic-methods.html
@@ -354,9 +354,9 @@ invoke parameter passed to invoke
<p>
Internally, the Zend engine has special casting routines to cast objects
to integers, to booleans and to floating point values. For one reason or another,
- PHP scripts can only implement the __toString() method to cast objects to strings,
- while all other casting operations are kept away from user space PHP scripts. The
- PHP-CPP library solves this limitation, and allows one to also implement
+ a PHP script can only implement the __toString() method,
+ while all other casting operations are kept away from it. The
+ PHP-CPP library solves this limitation, and allows one to implement the
other casting functions as well.
</p>
<p>