Skip to content

Commit

Permalink
Fixed indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Gastkemper committed Feb 27, 2015
1 parent 98a2e6b commit a1bc5f9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/LinkORB/Buckaroo/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function sendRequest($TransactionRequest, $type)
case 'transaction':
$this->soapClient->TransactionRequest($TransactionRequest);
break;
case 'transactionstatus':
case 'transactionstatus':
$this->soapClient->TransactionStatus($TransactionRequest);
break;
case 'refundinfo':
Expand Down
4 changes: 2 additions & 2 deletions src/LinkORB/Buckaroo/SOAP/Body.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Body
public $StartRecurrent;
public $Services;
public $CustomParameters;
public $AdditionalParameters;
public $AdditionalParameters;
public $RefundInfo;
public $Transaction;
public $Transaction;
}
20 changes: 10 additions & 10 deletions src/LinkORB/Buckaroo/SOAP/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

class Transaction
{
public $CustomParameter;
public $AdditionalParameter;
public $Key;
public $Invoice;
public $CustomParameter;
public $AdditionalParameter;

public $Key;
public $Invoice;

public function __construct( $Key = null, $Invoice = null )
{
$this->Key = $Key;
$this->Invoice = $Invoice;
}
public function __construct( $Key = null, $Invoice = null )
{
$this->Key = $Key;
$this->Invoice = $Invoice;
}
}

0 comments on commit a1bc5f9

Please sign in to comment.