From 2917f09f5f4573df4ae810da1351003076adf4a8 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Mon, 28 Apr 2014 13:36:46 +0200 Subject: added documentation about php.ini variables, and fixed typo in exception documentation --- documentation/exceptions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'documentation/exceptions.html') diff --git a/documentation/exceptions.html b/documentation/exceptions.html index c4f0e5c..f3938ae 100644 --- a/documentation/exceptions.html +++ b/documentation/exceptions.html @@ -17,7 +17,7 @@ * and that divides them. Division by zero is of course * not permitted - it will throw an exception then */ -Php::Value myDiv(Php::Parameters ¶ms) +Php::Value myDiv(Php::Parameters &params) { // division by zero is not permitted, throw an exception when this happens if (params[1] == 0) throw Php::Exception("Division by zero"); -- cgit v1.2.3