Completed
Pull Request — master (#284)
by Gino
07:36
created
htdocs/class/smarty/internals/core.run_insert_handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 /**
9 9
  * Handle insert tags
10 10
  *
11
- * @param array $args
12 11
  * @return string
13 12
  */
14 13
 function smarty_core_run_insert_handler($params, &$smarty)
Please login to merge, or discard this patch.
htdocs/class/smarty/internals/core.write_cache_file.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
  // $tpl_file, $cache_id, $compile_id, $results
20 20
 
21
+/**
22
+ * @param Smarty $smarty
23
+ */
21 24
 function smarty_core_write_cache_file($params, &$smarty)
22 25
 {
23 26
 
Please login to merge, or discard this patch.
htdocs/class/smarty/internals/core.write_compiled_include.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,8 @@
 block discarded – undo
8 8
 /**
9 9
  * Extract non-cacheable parts out of compiled template and write it
10 10
  *
11
- * @param string $compile_path
12
- * @param string $template_compiled
13
- * @return boolean
11
+ * @param Smarty $smarty
12
+ * @return null|boolean
14 13
  */
15 14
 
16 15
 function smarty_core_write_compiled_include($params, &$smarty)
Please login to merge, or discard this patch.
htdocs/class/smarty/internals/core.write_compiled_resource.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,7 @@
 block discarded – undo
8 8
 /**
9 9
  * write the compiled resource
10 10
  *
11
- * @param string $compile_path
12
- * @param string $compiled_content
13
- * @return true
11
+ * @return boolean
14 12
  */
15 13
 function smarty_core_write_compiled_resource($params, &$smarty)
16 14
 {
Please login to merge, or discard this patch.
htdocs/class/smarty/internals/core.write_file.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,6 @@
 block discarded – undo
8 8
 /**
9 9
  * write out a file to disk
10 10
  *
11
- * @param string $filename
12
- * @param string $contents
13
- * @param boolean $create_dirs
14 11
  * @return boolean
15 12
  */
16 13
 function smarty_core_write_file($params, &$smarty)
Please login to merge, or discard this patch.
htdocs/class/smarty/plugins/function.config_load.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
  *       'global' => overrides scope, setting to parent if true)
24 24
  * </pre>
25 25
  * @param Smarty
26
+ * @param Smarty $smarty
26 27
  */
27 28
 function smarty_function_config_load($params, &$smarty)
28 29
 {
Please login to merge, or discard this patch.
htdocs/class/smarty/plugins/function.eval.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
  * @author Monte Ohrt <monte at ohrt dot com>
18 18
  * @param array
19 19
  * @param Smarty
20
+ * @param XoopsTpl $smarty
20 21
  */
21 22
 function smarty_function_eval($params, &$smarty)
22 23
 {
Please login to merge, or discard this patch.
htdocs/class/smarty/plugins/function.html_checkboxes.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -123,6 +123,12 @@
 block discarded – undo
123 123
 
124 124
 }
125 125
 
126
+/**
127
+ * @param string $name
128
+ * @param string $extra
129
+ * @param string $separator
130
+ * @param boolean $labels
131
+ */
126 132
 function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels) {
127 133
     $_output = '';
128 134
     if ($labels) $_output .= '<label>';
Please login to merge, or discard this patch.
htdocs/class/smarty/plugins/function.html_radios.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -127,6 +127,14 @@
 block discarded – undo
127 127
 
128 128
 }
129 129
 
130
+/**
131
+ * @param string $name
132
+ * @param null|string $selected
133
+ * @param string $extra
134
+ * @param string $separator
135
+ * @param boolean $labels
136
+ * @param boolean $label_ids
137
+ */
130 138
 function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids) {
131 139
     $_output = '';
132 140
     if ($labels) {
Please login to merge, or discard this patch.