'pay', 'price' => $amount, 'pay_type' => 'alipay', 'msg' => 'Processing credit card payment of ' . $amount . PHP_EOL, ]; } /** * @param float $amount * @return array */ public function refund(float $amount): array { return [ 'type' => 'refund', 'price' => $amount, 'pay_type' => 'alipay', 'msg' => 'Processing credit card refund of ' . $amount . PHP_EOL, ]; } }