diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
commit | a7f3e3bec50762f2083f70672a0ba3db533fc8bb (patch) | |
tree | c8e9961cb610042acf32e88096abc5fcb3eac4dd /app/Helper/FormHelper.php | |
parent | 38082096909424c23032224365c90aa5189eb6f0 (diff) |
PHPdoc cleanup
Diffstat (limited to 'app/Helper/FormHelper.php')
-rw-r--r-- | app/Helper/FormHelper.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/Helper/FormHelper.php b/app/Helper/FormHelper.php index 161fd54c..c2ea1d72 100644 --- a/app/Helper/FormHelper.php +++ b/app/Helper/FormHelper.php @@ -40,11 +40,12 @@ class FormHelper extends Base * Display a select field * * @access public - * @param string $name Field name - * @param array $options Options - * @param array $values Form values - * @param array $errors Form errors - * @param string $class CSS class + * @param string $name Field name + * @param array $options Options + * @param array $values Form values + * @param array $errors Form errors + * @param array $attributes + * @param string $class CSS class * @return string */ public function select($name, array $options, array $values = array(), array $errors = array(), array $attributes = array(), $class = '') |