diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-09-08 14:07:42 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-09-08 14:07:42 +0200 |
commit | c3e0d1b6d12f07df88e31ffd896b275e65b788eb (patch) | |
tree | e5e1aa82133fd320351805540ecf14b1785a858a /phpBB/includes/request | |
parent | 798033075ba0bbef8f43c542ca05aae776747917 (diff) | |
download | forums-c3e0d1b6d12f07df88e31ffd896b275e65b788eb.tar forums-c3e0d1b6d12f07df88e31ffd896b275e65b788eb.tar.gz forums-c3e0d1b6d12f07df88e31ffd896b275e65b788eb.tar.bz2 forums-c3e0d1b6d12f07df88e31ffd896b275e65b788eb.tar.xz forums-c3e0d1b6d12f07df88e31ffd896b275e65b788eb.zip |
[ticket/8713] Fix type_cast_helper.php doc blocks: Add punctuation etc.
PHPBB3-8713
Diffstat (limited to 'phpBB/includes/request')
-rw-r--r-- | phpBB/includes/request/type_cast_helper.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/request/type_cast_helper.php b/phpBB/includes/request/type_cast_helper.php index 3039647bfa..1a5274ed14 100644 --- a/phpBB/includes/request/type_cast_helper.php +++ b/phpBB/includes/request/type_cast_helper.php @@ -93,8 +93,8 @@ class phpbb_request_type_cast_helper implements phpbb_request_type_cast_helper_i * @param mixed $type The variable type. Will be used with {@link settype()} * @param bool $multibyte Indicates whether string values may contain UTF-8 characters. * Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks. - * @param bool $trim Indicates whether string values will be be parsed with trim() - * Default is true + * @param bool $trim Indicates whether trim() should be applied to string values. + * Default is true. */ public function set_var(&$result, $var, $type, $multibyte = false, $trim = true) { @@ -149,8 +149,8 @@ class phpbb_request_type_cast_helper implements phpbb_request_type_cast_helper_i * @param bool $multibyte Indicates whether string keys and values may contain UTF-8 characters. * Default is false, causing all bytes outside the ASCII range (0-127) to * be replaced with question marks. - * @param bool $trim Indicates whether string values will be be parsed with trim() - * Default is true + * @param bool $trim Indicates whether trim() should be applied to string values. + * Default is true. */ public function recursive_set_var(&$var, $default, $multibyte, $trim = true) { |