summaryrefslogtreecommitdiff
path: root/documentation/constructors-and-destructors.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 10:50:56 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 10:50:56 +0100
commitd724e346b28df9907a2ec115d20416944ea10d8a (patch)
treed9ff51e81c8ca5c77e53865a190eac999cc94556 /documentation/constructors-and-destructors.html
parent3bb0e31416994b0a36b784c8278b1c5f33999b1d (diff)
added id to all h2 tags to make it possible to link to specific sections, update documentation about serializable, fixed compile error for serialize implementation
Diffstat (limited to 'documentation/constructors-and-destructors.html')
-rw-r--r--documentation/constructors-and-destructors.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/constructors-and-destructors.html b/documentation/constructors-and-destructors.html
index d66e8a4..110ed60 100644
--- a/documentation/constructors-and-destructors.html
+++ b/documentation/constructors-and-destructors.html
@@ -138,7 +138,7 @@ echo($counter->value()."\n");
?&gt;
</code></pre>
</p>
-<h2>Private constructors</h2>
+<h2 id="private-constructors">Private constructors</h2>
<p>
Just like any other method, the __construct() method can also be
marked as being private or protected. If you do this, you will make it
@@ -176,7 +176,7 @@ extern "C" {
needs a copy constructor, which is called when a "clone $object" instruction
is given in a PHP script.
</p>
-<h2>Constructing objects</h2>
+<h2 id="constructing-objects">Constructing objects</h2>
<p>
The Php::Value class can be used as a regular PHP $variable, and you can therefore
also use it for storing object instances. But how do you create brand