From 684f81e8bcbadc3d522e6557161275deaad4fd3b Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Thu, 13 Mar 2014 23:40:20 +0100 Subject: fixed example code --- documentation/constructors-and-destructors.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'documentation') diff --git a/documentation/constructors-and-destructors.html b/documentation/constructors-and-destructors.html index b5bdeb0..d7cc61b 100644 --- a/documentation/constructors-and-destructors.html +++ b/documentation/constructors-and-destructors.html @@ -107,7 +107,7 @@ public: * php "constructor" * @param params */ - void __construct(Php::Parameters ¶ms) + void __construct(Php::Parameters &params) { // copy first parameter (if available) if (params.size() > 0) _value = params[0]; @@ -267,7 +267,7 @@ public: * php "constructor" * @param params */ - void __construct(Php::Parameters ¶ms) + void __construct(Php::Parameters &params) { // copy first parameter (if available) if (params.size() > 0) _value = params[0]; -- cgit v1.2.3