PHPdoc cleanup
This commit is contained in:
@@ -15,7 +15,8 @@ class AssetHelper extends Base
|
||||
/**
|
||||
* Add a Javascript asset
|
||||
*
|
||||
* @param string $filename Filename
|
||||
* @param string $filename Filename
|
||||
* @param bool $async
|
||||
* @return string
|
||||
*/
|
||||
public function js($filename, $async = false)
|
||||
|
||||
@@ -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 = '')
|
||||
|
||||
@@ -56,7 +56,7 @@ class HookHelper extends Base
|
||||
* @access public
|
||||
* @param string $hook
|
||||
* @param string $template
|
||||
* @return \Helper\Hook
|
||||
* @return \Kanboard\Helper\Hook
|
||||
*/
|
||||
public function attach($hook, $template)
|
||||
{
|
||||
|
||||
@@ -32,14 +32,15 @@ class UrlHelper extends Base
|
||||
* HTML Link tag
|
||||
*
|
||||
* @access public
|
||||
* @param string $label Link label
|
||||
* @param string $controller Controller name
|
||||
* @param string $action Action name
|
||||
* @param array $params Url parameters
|
||||
* @param boolean $csrf Add a CSRF token
|
||||
* @param string $class CSS class attribute
|
||||
* @param boolean $new_tab Open the link in a new tab
|
||||
* @param string $anchor Link Anchor
|
||||
* @param string $label Link label
|
||||
* @param string $controller Controller name
|
||||
* @param string $action Action name
|
||||
* @param array $params Url parameters
|
||||
* @param boolean $csrf Add a CSRF token
|
||||
* @param string $class CSS class attribute
|
||||
* @param string $title
|
||||
* @param boolean $new_tab Open the link in a new tab
|
||||
* @param string $anchor Link Anchor
|
||||
* @return string
|
||||
*/
|
||||
public function link($label, $controller, $action, array $params = array(), $csrf = false, $class = '', $title = '', $new_tab = false, $anchor = '')
|
||||
|
||||
Reference in New Issue
Block a user