Completed
Push — master ( 552684...4ca78b )
by Joseph
01:55
created
src/ChargeRequest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use PHPieces\ANZGateway\models\Merchant;
7 7
 use PHPieces\ANZGateway\models\Payment;
8 8
 use PHPieces\ANZGateway\models\TransactionSource;
9
-use ReflectionClass;
10 9
 
11 10
 class ChargeRequest
12 11
 {
Please login to merge, or discard this patch.
src/models/Card.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,9 +72,9 @@
 block discarded – undo
72 72
     public function toArray()
73 73
     {
74 74
         return [
75
-           CardFields::CARD_NUMBER        => $this->cardNumber,
76
-           CardFields::CARD_EXPIRY_DATE   => $this->expiryDate,
77
-           CardFields::CARD_SECURITY_CODE => $this->securityCode,
75
+            CardFields::CARD_NUMBER        => $this->cardNumber,
76
+            CardFields::CARD_EXPIRY_DATE   => $this->expiryDate,
77
+            CardFields::CARD_SECURITY_CODE => $this->securityCode,
78 78
         ];
79 79
     }
80 80
 }
Please login to merge, or discard this patch.