summaryrefslogtreecommitdiff
path: root/inc/Input.class.php
diff options
context:
space:
mode:
authorGerrit Uitslag <klapinklapin@gmail.com>2014-10-01 17:05:40 +0200
committerGerrit Uitslag <klapinklapin@gmail.com>2014-10-01 17:05:40 +0200
commite3710957c6b7e12293805a15d0624be7c7054092 (patch)
treeb3a7542d4eb9e3b35a1f4c4ef499b6773e75a336 /inc/Input.class.php
parent253d4b48ec708eb42033862dc15c8576f44a48ed (diff)
downloadrpg-e3710957c6b7e12293805a15d0624be7c7054092.tar.gz
rpg-e3710957c6b7e12293805a15d0624be7c7054092.tar.bz2
more phpdocs and minor check
Diffstat (limited to 'inc/Input.class.php')
-rw-r--r--inc/Input.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Input.class.php b/inc/Input.class.php
index f4a4612df..199994d8d 100644
--- a/inc/Input.class.php
+++ b/inc/Input.class.php
@@ -131,7 +131,7 @@ class Input {
* @param string $name Parameter name
* @param mixed $default If parameter is not set, initialize with this value
* @param bool $nonempty Init with $default if parameter is set but empty()
- * @return &mixed
+ * @return mixed (reference)
*/
public function &ref($name, $default = '', $nonempty = false) {
if(!isset($this->access[$name]) || ($nonempty && empty($this->access[$name]))) {