AliPayment.php
286 Bytes
<?php
/**
* Created by PhpStorm.
* User: lishuai
* Date: 2022/2/15
* Time: 4:23 PM
*/
namespace App\Payment;
use App\Models\Order;
class AliPayment implements PaymentInterface
{
public function prepare(Order $order)
{
// TODO: Implement prepare() method.
}
}