Completed
Push — master ( ba7d13...90f2d9 )
by Daniel
01:57
created
Salariu/Salariu.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,14 +127,14 @@  discard block
 block discarded – undo
127 127
             $this->tCmnSuperGlobals->request->get('pc'),
128 128
         ];
129 129
         $this->tCmnSuperGlobals->request->set('wkDays', $this->setWorkingDaysInMonth($components[0], $components[1]));
130
-        $vDays      = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb');
130
+        $vDays = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb');
131 131
         $this->tCmnSuperGlobals->request->set('nDays', max($vDays, 0));
132 132
     }
133 133
 
134 134
     private function setFormInput($dtR, $ymValues, $inMW, $inVFR)
135 135
     {
136 136
         $this->applyYMvalidations($this->tCmnSuperGlobals, $ymValues, $dtR);
137
-        $minWage   = $this->determineCrtMinWage($this->tCmnSuperGlobals, [
137
+        $minWage = $this->determineCrtMinWage($this->tCmnSuperGlobals, [
138 138
             'EMW'      => $inMW,
139 139
             'YM range' => $dtR
140 140
         ]);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 
343 343
     private function setFormRowAmount($value, $defaultCellStyle)
344 344
     {
345
-        $cellValue                 = [];
345
+        $cellValue = [];
346 346
         $defaultCellStyle['style'] .= 'text-align:right;';
347 347
         foreach ($this->currencyDetails['CX'] as $key2 => $value2) {
348 348
             $fmt         = new \NumberFormatter($value2['locale'], \NumberFormatter::CURRENCY);
Please login to merge, or discard this patch.
Salariu/InputValidation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
                 'min_range' => $dtR['minimum']->format('Ymd'),
41 41
             ]
42 42
         ];
43
-        $validYM  = filter_var($tCSG->get('ym'), FILTER_VALIDATE_INT, $validOpt);
43
+        $validYM = filter_var($tCSG->get('ym'), FILTER_VALIDATE_INT, $validOpt);
44 44
         if (!array_key_exists($validYM, $ymValues)) {
45 45
             $validYM = $validOpt['options']['default'];
46 46
         }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $intValue   = 0;
86 86
         $maxCounter = count($inMny['EMW']);
87 87
         for ($counter = 0; $counter < $maxCounter; $counter++) {
88
-            $crtVal         = $inMny['EMW'][$counter];
88
+            $crtVal = $inMny['EMW'][$counter];
89 89
             echo '<hr/>';
90 90
             print_r($inMny['EMW'][$counter]);
91 91
             echo '<hr/>';
Please login to merge, or discard this patch.