fix php docs types
This commit is contained in:
parent
c147f06b91
commit
2ff953ef89
|
@ -235,10 +235,10 @@ function form_text($name, $label, $value, $disabled = false, $maxlength = null,
|
|||
/**
|
||||
* Renders a text input with placeholder instead of label.
|
||||
*
|
||||
* @param String $name Input name
|
||||
* @param String $placeholder Placeholder
|
||||
* @param String $value The value
|
||||
* @param Boolean $disabled Is the field enabled?
|
||||
* @param string $name Input name
|
||||
* @param string $placeholder Placeholder
|
||||
* @param string $value The value
|
||||
* @param boolean $disabled Is the field enabled?
|
||||
* @return string
|
||||
*/
|
||||
function form_text_placeholder($name, $placeholder, $value, $disabled = false)
|
||||
|
@ -429,7 +429,7 @@ function form_csrf()
|
|||
|
||||
/**
|
||||
* @param string $name
|
||||
* @param String[] $options
|
||||
* @param string[] $options
|
||||
* @param string $selected
|
||||
* @return string
|
||||
*/
|
||||
|
|
|
@ -66,7 +66,7 @@ function throw_redirect($url)
|
|||
/**
|
||||
* Echoes given output and dies.
|
||||
*
|
||||
* @param String $output String to display
|
||||
* @param string $output String to display
|
||||
*/
|
||||
function raw_output($output = '')
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue