Passed
Push — master ( 56e3ba...d2a4fa )
by İbrahim
03:24
created
src/Processor/NestPay/BaseResponseProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     {
42 42
         $response->setOrderId((string)$xml->OrderId);
43 43
         $response->setTransactionId((string)$xml->TransId);
44
-        $response->setAuthCode((string) $xml->AuthCode);
44
+        $response->setAuthCode((string)$xml->AuthCode);
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
src/Pos/NestPay.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
     protected function buildRequest(Request $request, $transactionType)
31 31
     {
32 32
         $rawRequest = $this->builderFactory->createBuilder($transactionType)->build($request);
33
-        return array( 'DATA' => $rawRequest);
33
+        return array('DATA' => $rawRequest);
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
src/Pos/Posnet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     protected function buildRequest(Request $request, $transactionType)
29 29
     {
30 30
         $rawRequest = $this->builderFactory->createBuilder($transactionType)->build($request);
31
-        return array( 'xmldata' => $rawRequest);
31
+        return array('xmldata' => $rawRequest);
32 32
     }
33 33
 
34 34
     /**
@@ -38,6 +38,6 @@  discard block
 block discarded – undo
38 38
     protected function parseResponse($rawResponse, $transactionType)
39 39
     {
40 40
         $rawRequest = $this->builderFactory->createBuilder($transactionType)->build($request);
41
-        return array( 'DATA' => $rawRequest);
41
+        return array('DATA' => $rawRequest);
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/Pos/Gvp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     protected function buildRequest(Request $request, $transactionType)
29 29
     {
30 30
         $rawRequest = $this->builderFactory->createBuilder($transactionType)->build($request);
31
-        return array( 'data' => $rawRequest);
31
+        return array('data' => $rawRequest);
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
src/Builder/Posnet/CancelRequestBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     const TRANSACTION_TYPE = 'reverse';
10 10
     const ENVELOPE_NAME    = 'posnetRequest';
11 11
 
12
-    const TEMPORARY_DEFAULT_TRANSACTION_TYPE ='sale'; //TODO: To be removed.
12
+    const TEMPORARY_DEFAULT_TRANSACTION_TYPE = 'sale'; //TODO: To be removed.
13 13
 
14 14
     public function build(Request $request)
15 15
     {
Please login to merge, or discard this patch.