Completed
Push — master ( 2d4ee1...dfe00f )
by Daniel
04:00
created
Salariu/Salariu.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@  discard block
 block discarded – undo
65 65
         ];
66 66
     }
67 67
 
68
+    /**
69
+     * @param double $lngBase
70
+     */
68 71
     private function getValues($lngBase, $aStngs, $shLabels, $dtR) {
69 72
         $inDate             = $this->tCmnSuperGlobals->request->get('ym');
70 73
         $aReturn            = $this->getValuesPrimary($inDate, $lngBase, $aStngs, $shLabels, $dtR);
@@ -203,11 +206,19 @@  discard block
 block discarded – undo
203 206
         return implode($sReturn, '');
204 207
     }
205 208
 
209
+    /**
210
+     * @param string $frm
211
+     */
206 212
     private function setFormInputIntoFieldSet($frm) {
207 213
         return '<div class="tabbertab" id="Input" title="' . $this->tApp->gettext('i18n_FieldsetLabel_Inputs') . '">'
208 214
                 . $frm . '</div>';
209 215
     }
210 216
 
217
+    /**
218
+     * @param string $inName
219
+     * @param integer $inSize
220
+     * @param string $inAfterLabel
221
+     */
211 222
     private function setFormInputText($inName, $inSize, $inAfterLabel, $crtMinWage = 0) {
212 223
         $inputParameters = [
213 224
             'type'      => 'text',
@@ -286,6 +297,9 @@  discard block
 block discarded – undo
286 297
                 . $this->setStringIntoTag(implode('', $sReturn), 'table') . '</tbody>' . '</div>';
287 298
     }
288 299
 
300
+    /**
301
+     * @param double $amntLAA
302
+     */
289 303
     private function setFormOutputBonuses($snValue, $wkDays, $amntLAA, $ovTimeVal) {
290 304
         $sRt      = [];
291 305
         $sMin     = $this->tCmnSuperGlobals->request->get('sm') * pow(10, 4);
@@ -327,6 +341,9 @@  discard block
 block discarded – undo
327 341
         return implode('', $sReturn) . '</tr></thead></tbody>';
328 342
     }
329 343
 
344
+    /**
345
+     * @param double $brut
346
+     */
330 347
     private function setFormOutputTaxations($brut, $amnt) {
331 348
         $sRn              = [];
332 349
         $limitDisplayBase = false;
@@ -378,6 +395,10 @@  discard block
 block discarded – undo
378 395
         return implode('', $cellValue);
379 396
     }
380 397
 
398
+    /**
399
+     * @param string $text1
400
+     * @param string $text2
401
+     */
381 402
     private function setFrmRowTwoLbls($text1, $text2, $value) {
382 403
         return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">'
383 404
                 . $text2 . '</td>', $this->setFormRow($text1, $value, 'amount'));
Please login to merge, or discard this patch.