mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[ticket/8713] Fix type_cast_helper.php doc blocks: Add punctuation etc.
PHPBB3-8713
This commit is contained in:
parent
798033075b
commit
c3e0d1b6d1
1 changed files with 4 additions and 4 deletions
|
@ -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 mixed $type The variable type. Will be used with {@link settype()}
|
||||||
* @param bool $multibyte Indicates whether string values may contain UTF-8 characters.
|
* @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.
|
* 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()
|
* @param bool $trim Indicates whether trim() should be applied to string values.
|
||||||
* Default is true
|
* Default is true.
|
||||||
*/
|
*/
|
||||||
public function set_var(&$result, $var, $type, $multibyte = false, $trim = 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.
|
* @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
|
* Default is false, causing all bytes outside the ASCII range (0-127) to
|
||||||
* be replaced with question marks.
|
* be replaced with question marks.
|
||||||
* @param bool $trim Indicates whether string values will be be parsed with trim()
|
* @param bool $trim Indicates whether trim() should be applied to string values.
|
||||||
* Default is true
|
* Default is true.
|
||||||
*/
|
*/
|
||||||
public function recursive_set_var(&$var, $default, $multibyte, $trim = true)
|
public function recursive_set_var(&$var, $default, $multibyte, $trim = true)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue