Completed
Push — master ( bd124e...96e65a )
by Daniel
02:10
created
Salariu/Salariu.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $this->initializeSprGlbAndSession();
51 51
         $this->handleLocalizationSalariu($interfaceElements['Application']);
52 52
         echo $this->setHeaderHtml();
53
-        $ymValues          = $this->buildYMvalues();
53
+        $ymValues = $this->buildYMvalues();
54 54
         $this->processFormInputDefaults($this->tCmnSuperGlobals, $interfaceElements['Values Filter Rules'], $ymValues);
55 55
         echo $this->setFormInput($ymValues);
56 56
         $this->setExchangeRateValues($interfaceElements['Application'], $interfaceElements['Relevant Currencies']);
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             $this->tCmnSuperGlobals->request->get('pc'),
130 130
         ];
131 131
         $this->tCmnSuperGlobals->request->set('wkDays', $this->setWorkingDaysInMonth($components[0], $components[1]));
132
-        $vDays      = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb');
132
+        $vDays = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb');
133 133
         $this->tCmnSuperGlobals->request->set('nDays', max($vDays, 0));
134 134
     }
135 135
 
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
         $sReturn[]   = $this->setFormRowTwoLabels($this->setLabel('ovAmount2'), ''
219 219
             . '<span style="font-size:smaller;">' . $ovTime['o2'] . 'h&nbsp;x&nbsp;200%</span>', $ovTime[22]);
220 220
         $sReturn[]   = $this->setFormRowTwoLabels($this->setLabel('sb'), '&nbsp;', $brut);
221
-        $brut        += $this->tCmnSuperGlobals->request->get('afet') * pow(10, 4);
222
-        $amnt      = $this->getValues($brut, $aryStngs, $shLabels);
221
+        $brut += $this->tCmnSuperGlobals->request->get('afet') * pow(10, 4);
222
+        $amnt = $this->getValues($brut, $aryStngs, $shLabels);
223 223
         $casValue    = $this->txLvl['cas'];
224 224
         $sReturn[]   = $this->setFormRowTwoLabels($this->setLabel('cas'), $this->txLvl['casP'] . '%', $casValue);
225 225
         $smjValue    = $this->txLvl['smj'];
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
     private function setFormRowAmount($value, $defaultCellStyle)
296 296
     {
297
-        $cellValue                 = [];
297
+        $cellValue = [];
298 298
         $defaultCellStyle['style'] .= 'text-align:right;';
299 299
         foreach ($this->currencyDetails['CX'] as $key2 => $value2) {
300 300
             $fmt         = new \NumberFormatter($value2['locale'], \NumberFormatter::CURRENCY);
Please login to merge, or discard this patch.