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]); - } - }