mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 04:21:27 +08:00
18 lines
256 B
PHP
18 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic;
|
|
|
|
use App\Validators\PointGift as PointGiftValidator;
|
|
|
|
trait PointGiftTrait
|
|
{
|
|
|
|
public function checkGift($id)
|
|
{
|
|
$validator = new PointGiftValidator();
|
|
|
|
return $validator->checkGift($id);
|
|
}
|
|
|
|
}
|