Completed
Push — master ( c597d1...238c6e )
by Gino
19s
created
class/files/TDMCreateXoopsCode.php 1 patch
Doc Comments   +22 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,6 +72,11 @@  discard block
 block discarded – undo
72 72
     *
73 73
     *  @return string
74 74
     */
75
+
76
+    /**
77
+     * @param string $value
78
+     * @param boolean $interlock
79
+     */
75 80
     public function getXcEqualsOperator($var, $value, $interlock = null, $ref = false, $t = '')
76 81
     {
77 82
         if (false === $ref) {
@@ -136,6 +141,12 @@  discard block
 block discarded – undo
136 141
     *
137 142
     *  @return string
138 143
     */
144
+
145
+    /**
146
+     * @param string $anchor
147
+     * @param string $name
148
+     * @param string $vars
149
+     */
139 150
     public function getXcAnchorFunction($anchor, $name, $vars, $close = false)
140 151
     {
141 152
         $semicolon = $close !== false ? ';' : '';
@@ -261,6 +272,10 @@  discard block
 block discarded – undo
261 272
     *  @param $moduleDirname
262 273
     *  @return string
263 274
     */
275
+
276
+    /**
277
+     * @param string $dirPath
278
+     */
264 279
     public function getXcMediaUploader($var = '', $dirPath, $moduleDirname, $t = '')
265 280
     {
266 281
         $mimetypes = self::getXcGetConfig($moduleDirname, 'mimetypes');
@@ -312,6 +327,10 @@  discard block
 block discarded – undo
312 327
     *  @param $name
313 328
     *  @return string
314 329
     */
330
+
331
+    /**
332
+     * @param string $name
333
+     */
315 334
     public function getXcGetConfig($moduleDirname, $name)
316 335
     {
317 336
         return "\${$moduleDirname}->getConfig('{$name}')";
@@ -730,8 +749,8 @@  discard block
 block discarded – undo
730 749
     /**
731 750
      *  @public function getXcTplAssign     
732 751
      *
733
-     *  @param $tplString
734
-     *  @param $phpRender
752
+     *  @param string $tplString
753
+     *  @param string $phpRender
735 754
      *  @param $leftIsString 
736 755
      *
737 756
      *  @return string
@@ -1172,7 +1191,7 @@  discard block
 block discarded – undo
1172 1191
      *  @public function getXcGet
1173 1192
      *
1174 1193
      *  @param $left
1175
-     *  @param $var
1194
+     *  @param string $var
1176 1195
      *  @param $obj
1177 1196
      *  @param $handler
1178 1197
      *  @param $isParam
Please login to merge, or discard this patch.