mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 21:31:37 +08:00
17 lines
262 B
PHP
17 lines
262 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Report;
|
|
|
|
use App\Models\Reason as ReasonModel;
|
|
use App\Services\Logic\Service as LogicService;
|
|
|
|
class ReasonList extends LogicService
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
return ReasonModel::reportOptions();
|
|
}
|
|
|
|
}
|