PaymentInterface.php 271 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 <?php /** * Created by PhpStorm. * User: lishuai * Date: 2022/2/15 * Time: 4:00 PM */ namespace App\Payment; use App\Models\Order; interface PaymentInterface { /** * @param $order * @return array */ public function prepare(Order $order); }