@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | { |
44 | 44 | return new Assert\Collection([ |
45 | 45 | 'amount' => $this->buildElement('float', 1), |
46 | - 'currency' => $this->buildElement('string', 1, ['min' => 3,'max' => 3]), |
|
46 | + 'currency' => $this->buildElement('string', 1, ['min' => 3, 'max' => 3]), |
|
47 | 47 | 'settle' => $this->buildElement('bool'), |
48 | - 'order_id' => $this->buildElement('string', 0, ['min' => 2,'max' => 50]), |
|
48 | + 'order_id' => $this->buildElement('string', 0, ['min' => 2, 'max' => 50]), |
|
49 | 49 | 'description' => $this->buildElement('string', 0, ['max' => 255]), |
50 | - 'country' => $this->buildElement('string', 1, ['min' => 2,'max' => 2]), |
|
50 | + 'country' => $this->buildElement('string', 1, ['min' => 2, 'max' => 2]), |
|
51 | 51 | 'payment_method' => new Assert\Required([ |
52 | 52 | new Assert\Type([ |
53 | 53 | 'type' => 'string', |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | ]), |
81 | 81 | 'exp_year' => $this->buildElement( |
82 | 82 | 'integer', 1, |
83 | - ['min' => 4,'max' => 4], |
|
83 | + ['min' => 4, 'max' => 4], |
|
84 | 84 | new Assert\Range(['min' => date('Y')]), |
85 | 85 | ), |
86 | 86 | 'exp_month' => $this->buildElement('integer', 1), |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | ]); |
167 | 167 | } |
168 | 168 | |
169 | - private function buildElement($typeValue, bool $isRequired=false, $length=0, $args=0) |
|
169 | + private function buildElement($typeValue, bool $isRequired = false, $length = 0, $args = 0) |
|
170 | 170 | { |
171 | 171 | $inside_array = [ |
172 | 172 | new Assert\Type([ |
@@ -11,7 +11,7 @@ |
||
11 | 11 | private $authorizeData; |
12 | 12 | private $finalizeKey; |
13 | 13 | |
14 | - public function __construct($paymentId, $authorizeData, $isV2=false) |
|
14 | + public function __construct($paymentId, $authorizeData, $isV2 = false) |
|
15 | 15 | { |
16 | 16 | $this->paymentId = $paymentId; |
17 | 17 | $this->authorizeData = $authorizeData; |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | */ |
409 | 409 | public function setThreeds2data( |
410 | 410 | ThreeDS2AuthorizationInformation $threeDS2AuthorizationInformation |
411 | - ){ |
|
411 | + ) { |
|
412 | 412 | $this->threeDS2AuthorizationInformation = $threeDS2AuthorizationInformation; |
413 | 413 | } |
414 | 414 | |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | */ |
427 | 427 | public function setThreeDS2AuthorizationInformation( |
428 | 428 | ThreeDS2AuthorizationInformation $threeDS2AuthorizationInformation |
429 | - ){ |
|
429 | + ) { |
|
430 | 430 | $this->threeDS2AuthorizationInformation = $threeDS2AuthorizationInformation; |
431 | 431 | } |
432 | 432 |