Passed
Push — main ( 2bc5a4...5ffc2f )
by Vasil
16:31 queued 13:09
created
src/Model/Payment.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     public function setCourierServicePayer(string $courierServicePayer): void
72 72
     {
73
-        if (! $this->isValidPayer($courierServicePayer)) {
73
+        if (!$this->isValidPayer($courierServicePayer)) {
74 74
             throw new InvalidArgumentException();
75 75
         }
76 76
         $this->courierServicePayer = $courierServicePayer;
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     public function setDeclaredValuePayer(string $declaredValuePayer): void
85 85
     {
86
-        if (! $this->isValidPayer($declaredValuePayer)) {
86
+        if (!$this->isValidPayer($declaredValuePayer)) {
87 87
             throw new InvalidArgumentException();
88 88
         }
89 89
         $this->declaredValuePayer = $declaredValuePayer;
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
     public function setPackagePayer(string $packagePayer): void
98 98
     {
99
-        if (! $this->isValidPayer($packagePayer)) {
99
+        if (!$this->isValidPayer($packagePayer)) {
100 100
             throw new InvalidArgumentException();
101 101
         }
102 102
         $this->packagePayer = $packagePayer;
Please login to merge, or discard this patch.
src/Model/CountryCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
     public function setCode(int $code): self
47 47
     {
48
-        if (! \in_array($code, self::CODES)) {
48
+        if (!\in_array($code, self::CODES)) {
49 49
             throw new \InvalidArgumentException();
50 50
         }
51 51
         $this->code = $code;
Please login to merge, or discard this patch.