fix php docs types

This commit is contained in:
Thomas Rupprecht 2023-02-06 19:35:02 +01:00 committed by Igor Scheller
parent c147f06b91
commit 2ff953ef89
2 changed files with 6 additions and 6 deletions

View File

@ -235,10 +235,10 @@ function form_text($name, $label, $value, $disabled = false, $maxlength = null,
/** /**
* Renders a text input with placeholder instead of label. * Renders a text input with placeholder instead of label.
* *
* @param String $name Input name * @param string $name Input name
* @param String $placeholder Placeholder * @param string $placeholder Placeholder
* @param String $value The value * @param string $value The value
* @param Boolean $disabled Is the field enabled? * @param boolean $disabled Is the field enabled?
* @return string * @return string
*/ */
function form_text_placeholder($name, $placeholder, $value, $disabled = false) function form_text_placeholder($name, $placeholder, $value, $disabled = false)
@ -429,7 +429,7 @@ function form_csrf()
/** /**
* @param string $name * @param string $name
* @param String[] $options * @param string[] $options
* @param string $selected * @param string $selected
* @return string * @return string
*/ */

View File

@ -66,7 +66,7 @@ function throw_redirect($url)
/** /**
* Echoes given output and dies. * Echoes given output and dies.
* *
* @param String $output String to display * @param string $output String to display
*/ */
function raw_output($output = '') function raw_output($output = '')
{ {