Completed
Push — master ( ece9c7...2d2d52 )
by Gilmar
05:37
created
src/Payment/Request/Manager.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@  discard block
 block discarded – undo
60 60
         return $this->processExecute($request, $response);
61 61
     }
62 62
 
63
+    /**
64
+     * @param string $route
65
+     */
63 66
     public function blow(Request $request, $route)
64 67
     {
65 68
         $request = $this->preExecute($request);
@@ -117,6 +120,9 @@  discard block
 block discarded – undo
117 120
         return $instance;
118 121
     }
119 122
 
123
+    /**
124
+     * @param string $name
125
+     */
120 126
     protected function getFullyQualifiedDecoratorName($name)
121 127
     {
122 128
         return Factory::PACKAGENAME . 'Payment\Response\Decorator\\' . $name;
Please login to merge, or discard this patch.
src/Payment/Request/Decorator/AbstractDecorator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         return [
60 60
             'merchantAccount'           => $this->getRequest()->getMerchantAccount(),
61 61
             'reference'                 => $this->factoryReference(),
62
-            'amount'                    => ['currency'  => 'BRL','value' => $value],
62
+            'amount'                    => ['currency'  => 'BRL', 'value' => $value],
63 63
             'shopperEmail'              => $this->getOrder()->getShopper()->getEmail(),
64 64
             'shopperIP'                 => $this->getOrder()->getShopper()->getIp(),
65 65
             'merchantOrderReference'    => 'payment-' . $this->getOrder()->getId(),
Please login to merge, or discard this patch.