Completed
Push — master ( 189007...259fd8 )
by Dmitry
08:51
created
src/response/CompletePurchaseResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @return string
187
+     * @return boolean
188 188
      */
189 189
     public function getIsSuccessful()
190 190
     {
Please login to merge, or discard this patch.
src/credentials/Credentials.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      */
94 94
     public function setTestMode($value)
95 95
     {
96
-        $this->isTestMode = (bool)$value;
96
+        $this->isTestMode = (bool) $value;
97 97
 
98 98
         return $this;
99 99
     }
Please login to merge, or discard this patch.
src/Invoice.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function setId($id)
42 42
     {
43
-        $this->id = (string)$id;
43
+        $this->id = (string) $id;
44 44
 
45 45
         return $this;
46 46
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function setClient($client)
54 54
     {
55
-        $this->client = (string)$client;
55
+        $this->client = (string) $client;
56 56
 
57 57
         return $this;
58 58
     }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
     public function setDescription($description)
79 79
     {
80
-        $this->description = (string)$description;
80
+        $this->description = (string) $description;
81 81
 
82 82
         return $this;
83 83
     }
Please login to merge, or discard this patch.