| 1234567891011121314151617181920 | <?phpnamespace Yansongda\Pay\Contracts;use Symfony\Component\HttpFoundation\Response;use Yansongda\Supports\Collection;interface GatewayInterface{    /**     * Pay an order.     *     * @author yansongda <me@yansongda.cn>     *     * @param string $endpoint     *     * @return Collection|Response     */    public function pay($endpoint, array $payload);}
 |