1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 11:41:27 +08:00
2020-09-17 21:29:29 +08:00

25 lines
407 B
PHP

<?php
namespace App\Services\Logic;
use App\Validators\Package as PackageValidator;
trait PackageTrait
{
public function checkPackage($id)
{
$validator = new PackageValidator();
return $validator->checkPackage($id);
}
public function checkPackageCache($id)
{
$validator = new PackageValidator();
return $validator->checkPackageCache($id);
}
}