amount = $this->method->formatPrice($amount, $this->paypalOrder->currency); } /** * @return array */ protected function buildRequestBody() { $body = [ 'amount' => $this->getAmount() ]; return $body; } /** * @return array */ protected function getAmount() { $amount = [ 'currency_code' => $this->paypalOrder->currency, 'value' => $this->amount ]; return $amount; } }