Passed
Push — develop ( 081500...4557f2 )
by Andrew
33s
created
web/prepare.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 /** @var \Payum\Core\Payum $payum */
6 6
 $storage = $payum->getStorage(\FDM\Payum\Netaxept\Model\Payment::class);
@@ -74,4 +74,4 @@  discard block
 block discarded – undo
74 74
     die("Could not obtain Netaxept terminal URI!");
75 75
 }
76 76
 
77
-header("Location: ".$uri);
78 77
\ No newline at end of file
78
+header("Location: " . $uri);
79 79
\ No newline at end of file
Please login to merge, or discard this patch.
web/cancel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
src/Payum/Netaxept/NetaxeptGatewayFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
             ];
102 102
             $config->defaults($config['payum.default_options']);
103 103
             $config['payum.required_options'] = [];
104
-            $config['payum.api'] = function (ArrayObject $config) {
104
+            $config['payum.api'] = function(ArrayObject $config) {
105 105
                 $config->validateNotEmpty($config['payum.required_options']);
106 106
 
107 107
                 return new Api($config['merchantId'], $config['token'], null, null, null, $config['sandbox']);
Please login to merge, or discard this patch.
web/user_cancelled.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
web/cancelled_backend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
web/done_and_captured.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
web/done_but_only_authed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
web/authorize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.
web/authorize_and_capture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/config.php';
3
+include __DIR__ . '/config.php';
4 4
 
5 5
 // Grab the token, the storage, and the payment record from storage using the ID stored in the token.
6 6
 /** @var \Payum\Core\Payum $payum */
Please login to merge, or discard this patch.