@@ -256,7 +256,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | /** |