1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 04:57:39 +08:00
2021-05-07 19:34:31 +08:00

18 lines
248 B
PHP

<?php
namespace App\Services\Logic;
use App\Validators\Answer as AnswerValidator;
trait AnswerTrait
{
public function checkAnswer($id)
{
$validator = new AnswerValidator();
return $validator->checkAnswer($id);
}
}