1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
2020-04-22 21:30:41 +08:00

25 lines
410 B
PHP

<?php
namespace App\Services\Frontend;
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);
}
}