Skip to content

Commit c535954

Browse files
committed
CS fails updates.
1 parent 6a94ea7 commit c535954

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Interfaces/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ interface Constants
9696

9797
const PAYMENT_METHOD_BPY = 'BPY'; // Billpay
9898
const PAYMENT_METHOD_CUP = 'CUP'; // China Union Pay
99-
const PAYMENT_METHOD_CUR = 'CUR'; //
99+
const PAYMENT_METHOD_CUR = 'CUR'; // Curabill
100100
const PAYMENT_METHOD_DIS = 'DIS'; // Discover
101101
const PAYMENT_METHOD_DEA = 'DEA'; // * iDeal
102102
const PAYMENT_METHOD_DIB = 'DIB'; // SOFORT Überweisung

src/Message/AbstractXmlRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ abstract class AbstractXmlRequest extends AbstractRequest
5656
*/
5757
protected $serviceVersion = Gateway::XML_SERVICE_VERSION;
5858

59-
public abstract function getData();
59+
abstract public function getData();
6060

6161
/**
6262
* @param $requestElement

src/Message/CompleteResponse.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
use Omnipay\Common\Message\AbstractResponse;
2020
use Omnipay\Datatrans\Gateway;
2121

22-
2322
/**
2423
* Datatrans Complete Purchase/Authorize Response
2524
*/

src/Message/RedirectResponse.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ public function getLightboxHtmlAttributes($quote = '"')
134134
/**
135135
* Convert string from camel case parameter name to lightbox-mode name.
136136
*/
137-
protected function toLightboxFormat($camelCase) {
137+
protected function toLightboxFormat($camelCase)
138+
{
138139
preg_match_all('!([A-Z][A-Z0-9]*(?=$|[A-Z][a-z0-9])|[A-Za-z][a-z0-9]+)!', $camelCase, $matches);
139140
$ret = $matches[0];
140141

0 commit comments

Comments
 (0)