feat : Proxy Remote Fail

This commit is contained in:
2025-09-07 14:18:01 +08:00
parent 32bc27596e
commit 75af9debfb
7 changed files with 463 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Interface\Test\Proxy;
interface OrderInterface
{
/**
* 创建订单
* @param array $data
* @return array
*/
public function createOrder(array $data): array;
}