[fix] 删除重复包导入

This commit is contained in:
LinusX 2024-06-17 22:58:53 +08:00
parent 8cc247b653
commit f0c620cbc2
No known key found for this signature in database

View File

@ -10,7 +10,6 @@ use App\Services\OrderService;
use App\Services\PaymentService;
use App\Services\TelegramService;
use Illuminate\Http\Request;
use App\Models\Payment;
class PaymentController extends Controller
{
@ -58,7 +57,7 @@ class PaymentController extends Controller
$payment->name,
$order->trade_no
);
$telegramService->sendMessageWithAdmin($message);
return true;
}