Test Failed
Pull Request — master (#39)
by
unknown
01:17
created
src/Method/Chargeback/Get.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function __construct($payment_id, $chargeback_id)
14 14
     {
15 15
         $this->payment_id = $payment_id;
16
-        $this->chargeback_id =$chargeback_id;
16
+        $this->chargeback_id = $chargeback_id;
17 17
     }
18 18
 
19 19
     public function getChargebackId()
Please login to merge, or discard this patch.
src/Method/Chargeback/GetAll.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function getAction()
32 32
     {
33
-        if($this->payment_id == null){
33
+        if ($this->payment_id == null) {
34 34
             return 'payments/chargebacks';
35 35
         } else {
36 36
             return sprintf('payments/%s/chargebacks/', $this->payment_id);
Please login to merge, or discard this patch.