Completed
Push — master ( ba7d13...90f2d9 )
by Daniel
01:57
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   +24 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
         echo $this->setFooterHtml($inElmnts['Application']);
59 59
     }
60 60
 
61
+    /**
62
+     * @param double $lngBase
63
+     */
61 64
     private function getIncomeTaxValue($inDate, $lngBase, $vBA, $aryDeductions, $arySettings)
62 65
     {
63 66
         $rest = $lngBase - array_sum($aryDeductions);
@@ -84,6 +87,9 @@  discard block
 block discarded – undo
84 87
         ];
85 88
     }
86 89
 
90
+    /**
91
+     * @param double $lngBase
92
+     */
87 93
     private function getValues($dtR, $lngBase, $aStngs, $shLabels)
88 94
     {
89 95
         $inDate             = $this->tCmnSuperGlobals->request->get('ym');
@@ -186,6 +192,9 @@  discard block
 block discarded – undo
186 192
         return $sReturn;
187 193
     }
188 194
 
195
+    /**
196
+     * @param string $frm
197
+     */
189 198
     private function setFormInputIntoFieldSet($frm)
190 199
     {
191 200
         $aryFieldSet = [
@@ -195,6 +204,11 @@  discard block
 block discarded – undo
195 204
         return $this->setStringIntoTag(implode('', $aryFieldSet), 'fieldset', ['style' => 'float: left;']);
196 205
     }
197 206
 
207
+    /**
208
+     * @param string $inName
209
+     * @param integer $inSize
210
+     * @param string $inAfterLabel
211
+     */
198 212
     private function setFormInputText($inName, $inSize, $inAfterLabel, $crtMinWage = 0)
199 213
     {
200 214
         $inputParameters = [
@@ -265,6 +279,9 @@  discard block
 block discarded – undo
265 279
         ]);
266 280
     }
267 281
 
282
+    /**
283
+     * @param double $amntLAA
284
+     */
268 285
     private function setFormOutputBonuses($snValue, $wkDays, $amntLAA, $ovTimeVal)
269 286
     {
270 287
         $sRt      = [];
@@ -302,6 +319,9 @@  discard block
 block discarded – undo
302 319
         return implode('', $sReturn) . '</tr></thead></tbody>';
303 320
     }
304 321
 
322
+    /**
323
+     * @param double $brut
324
+     */
305 325
     private function setFormOutputTaxations($brut, $amnt)
306 326
     {
307 327
         $sRn              = [];
@@ -353,6 +373,10 @@  discard block
 block discarded – undo
353 373
         return implode('', $cellValue);
354 374
     }
355 375
 
376
+    /**
377
+     * @param string $text1
378
+     * @param string $text2
379
+     */
356 380
     private function setFrmRowTwoLbls($text1, $text2, $value)
357 381
     {
358 382
         return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">'
Please login to merge, or discard this patch.