logger->debug('Standard payment processing'); return $this->payment->pay($amount); } /** * @param float $amount * @return array */ public function processRefund(float $amount): array { $this->logger->debug('Standard refund processing'); return $this->payment->refund($amount); } }