Passed
Branch breakout (2dc8ab)
by Paul
02:07
created
src/Request/FeePaidRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
     {
58 58
         $this->newMessage('37');
59 59
         $this->addFixedOption($this->datestamp(), 18);
60
-        $this->addFixedOption(sprintf('%02d', (string)$this->getVariable('FeeType')), 2);
61
-        $this->addFixedOption(sprintf('%02d', (string)$this->getVariable('PaymentType')), 2);
60
+        $this->addFixedOption(sprintf('%02d', (string) $this->getVariable('FeeType')), 2);
61
+        $this->addFixedOption(sprintf('%02d', (string) $this->getVariable('PaymentType')), 2);
62 62
         $this->addFixedOption($this->getVariable('CurrencyType'), 3);
63 63
 
64 64
         // due to currency format localization, it is up to the programmer
Please login to merge, or discard this patch.
src/Request/SCStatusRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $this->newMessage('99');
33 33
         $this->addFixedOption($this->getVariable('Status'), 1);
34 34
         $this->addFixedOption($this->getVariable('Width'), 3);
35
-        $this->addFixedOption(sprintf("%03.2f", (float)$this->getVariable('Version')), 4);
35
+        $this->addFixedOption(sprintf("%03.2f", (float) $this->getVariable('Version')), 4);
36 36
 
37 37
         return $this->returnMessage($withSeq, $withCrc);
38 38
     }
Please login to merge, or discard this patch.