28 lines
496 B
PHP
28 lines
496 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
* @web_site https://ctexthuang.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Test\Adapter\Pay;
|
|
|
|
class WechatPayService
|
|
{
|
|
/**
|
|
* @param float $amount
|
|
* @return array
|
|
*/
|
|
public function makePayment(float $amount): array
|
|
{
|
|
return [
|
|
'code' => 'error',
|
|
'status' => 'fail',
|
|
'amount' => $amount,
|
|
];
|
|
}
|
|
} |