Completed
Push — master ( 1601f8...4a8589 )
by Laurent
01:43
created
class/bbctypes.class.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             }
257 257
 
258 258
             if (is_int($value)) {
259
-                $sqlwhere [] = $key . ' = ' . (int)$value;
259
+                $sqlwhere [] = $key . ' = ' . (int) $value;
260 260
                 continue;
261 261
             }
262 262
         }
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
      */
600 600
     public function isPaxRequired()
601 601
     {
602
-        switch ((int)$this->idType) {
602
+        switch ((int) $this->idType) {
603 603
             case 1:
604 604
             case 2:
605 605
                 return true;
@@ -615,7 +615,7 @@  discard block
 block discarded – undo
615 615
      */
616 616
     public function isBillingRequired()
617 617
     {
618
-        return (int)$this->idType === 2;
618
+        return (int) $this->idType === 2;
619 619
     }
620 620
 
621 621
     /**
Please login to merge, or discard this patch.