@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | 'cancelOrRefund' => 'CancelOrRefundDecorator', |
| 51 | 51 | ]; |
| 52 | 52 | |
| 53 | - if ( ! array_key_exists($this->getType(), $dict)) { |
|
| 53 | + if (!array_key_exists($this->getType(), $dict)) { |
|
| 54 | 54 | throw new \InvalidArgumentException('Request type [' . $this->getType() . ']not exist!'); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $className = Factory::PACKAGENAME |
| 63 | 63 | . 'Payment\Request\Decorator\\' . $this->getDecoratorName(); |
| 64 | 64 | |
| 65 | - if ( ! class_exists($className)) { |
|
| 65 | + if (!class_exists($className)) { |
|
| 66 | 66 | throw new \InvalidArgumentException('Request type [' . $className . '] not supported!'); |
| 67 | 67 | } |
| 68 | 68 | |