| @@ -60,6 +60,9 @@ discard block | ||
| 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 | ||
| 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; | 
| @@ -59,7 +59,7 @@ | ||
| 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(), |