From b38f094ed23d8b0e0e73e963855b9998d0519742 Mon Sep 17 00:00:00 2001 From: koogua Date: Thu, 29 Apr 2021 18:03:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4api=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E6=97=A0=E7=94=A8=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Api/Controllers/PublicController.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/app/Http/Api/Controllers/PublicController.php b/app/Http/Api/Controllers/PublicController.php index 93d19070..31cd3577 100644 --- a/app/Http/Api/Controllers/PublicController.php +++ b/app/Http/Api/Controllers/PublicController.php @@ -3,7 +3,6 @@ namespace App\Http\Api\Controllers; use App\Services\Logic\Reward\OptionList as RewardOptionList; -use App\Services\Logic\User\Console\NotifyStats as NotifyStatsService; use App\Services\Logic\Vip\OptionList as VipOptionList; use App\Services\Service as AppService; use App\Traits\Response as ResponseTrait; @@ -106,16 +105,4 @@ class PublicController extends Controller return $this->jsonSuccess(['options' => $options]); } - /** - * @Get("/notify/stats", name="home.notify_stats") - */ - public function notifyStatsAction() - { - $service = new NotifyStatsService(); - - $stats = $service->handle(); - - return $this->jsonSuccess(['stats' => $stats]); - } - }