mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-29 22:01:38 +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();
|
|
}
|
|
|
|
}
|