Passed
Pull Request — master (#57)
by Ihor
14:13 queued 09:36
created
Business/Payment/Transaction/Handler/AuthorizeTransactionHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class AuthorizeTransactionHandler implements AuthorizeTransactionHandlerInterface
18 18
 {
19 19
     public const ERROR_MESSAGE_AUTHORIZE_TRANSACTION_NOT_SUPPORTED =
20
-        'Attempt to call authorize transaction on payment method \'%s\' ' .
20
+        'Attempt to call authorize transaction on payment method \'%s\' '.
21 21
         'that does not support it';
22 22
 
23 23
     /**
Please login to merge, or discard this patch.
Payment/Transaction/Handler/AuthorizeOnRegistrationTransactionHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 class AuthorizeOnRegistrationTransactionHandler implements AuthorizeOnRegistrationTransactionHandlerInterface
17 17
 {
18 18
     public const ERROR_MESSAGE_AUTHORIZE_ON_REGISTRATION_TRANSACTION_NOT_SUPPORTED =
19
-        'Attempt to call authorize on registration transaction on payment method \'%s\' ' .
19
+        'Attempt to call authorize on registration transaction on payment method \'%s\' '.
20 20
         'that does not support it';
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
Business/Processor/Notification/Converter/NotificationXmlConverter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,12 +55,12 @@
 block discarded – undo
55 55
 
56 56
         $attributes = $xmlElement->attributes();
57 57
         if ($attributes !== null && $xmlElement->count() > 0 && $attributes->count() > 0) {
58
-            $result['@attributes'] = ((array)$attributes)['@attributes'];
58
+            $result['@attributes'] = ((array) $attributes)['@attributes'];
59 59
         }
60 60
 
61 61
         foreach ($xmlElement->children() as $node) {
62 62
             /** @var \SimpleXMLElement $node */
63
-            $result[$node->getName()] = $node->count() > 0 ? $this->simpleXmlToArray($node) : (string)$node;
63
+            $result[$node->getName()] = $node->count() > 0 ? $this->simpleXmlToArray($node) : (string) $node;
64 64
         }
65 65
 
66 66
         return $result;
Please login to merge, or discard this patch.