Completed
Push — master ( e9302d...785c05 )
by Daniel
01:55
created
Salariu/BasicSalariu.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@
 block discarded – undo
173 173
             . '<h1>' . $this->tApp->gettext('i18n_ApplicationName') . '</h1>';
174 174
     }
175 175
 
176
+    /**
177
+     * @param string $labelId
178
+     */
176 179
     private function setLabel($labelId)
177 180
     {
178 181
         $labelInfo = $this->appFlags['FI'][$labelId]['Label'];
Please login to merge, or discard this patch.
Salariu/Salariu.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@  discard block
 block discarded – undo
71 71
         ];
72 72
     }
73 73
 
74
+    /**
75
+     * @param double $lngBase
76
+     */
74 77
     private function getValues($dtR, $lngBase, $aStngs, $shLabels)
75 78
     {
76 79
         $inDate             = $this->tCmnSuperGlobals->request->get('ym');
@@ -173,6 +176,9 @@  discard block
 block discarded – undo
173 176
         return $sReturn;
174 177
     }
175 178
 
179
+    /**
180
+     * @param string $frm
181
+     */
176 182
     private function setFormInputIntoFieldSet($frm)
177 183
     {
178 184
         $aryFieldSet = [
@@ -182,6 +188,11 @@  discard block
 block discarded – undo
182 188
         return $this->setStringIntoTag(implode('', $aryFieldSet), 'fieldset', ['style' => 'float: left;']);
183 189
     }
184 190
 
191
+    /**
192
+     * @param string $inName
193
+     * @param integer $inSize
194
+     * @param string $inAfterLabel
195
+     */
185 196
     private function setFormInputText($inName, $inSize, $inAfterLabel, $crtMinWage = 0)
186 197
     {
187 198
         $inputParameters = [
@@ -252,6 +263,9 @@  discard block
 block discarded – undo
252 263
         ]);
253 264
     }
254 265
 
266
+    /**
267
+     * @param double $amntLAA
268
+     */
255 269
     private function setFormOutputBonuses($snValue, $wkDays, $amntLAA, $ovTimeVal)
256 270
     {
257 271
         $sRt      = [];
@@ -289,6 +303,9 @@  discard block
 block discarded – undo
289 303
         return implode('', $sReturn) . '</tr></thead></tbody>';
290 304
     }
291 305
 
306
+    /**
307
+     * @param double $brut
308
+     */
292 309
     private function setFormOutputTaxations($brut, $amnt)
293 310
     {
294 311
         $sRn              = [];
@@ -341,6 +358,10 @@  discard block
 block discarded – undo
341 358
         return implode('', $cellValue);
342 359
     }
343 360
 
361
+    /**
362
+     * @param string $text1
363
+     * @param string $text2
364
+     */
344 365
     private function setFrmRowTwoLbls($text1, $text2, $value)
345 366
     {
346 367
         return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">'
Please login to merge, or discard this patch.