You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
19 lines
381 B
<?php
|
|
|
|
namespace App\CouponRebate;
|
|
|
|
use Hyperf\DbConnection\Db;
|
|
use Hyperf\HttpServer\Contract\RequestInterface;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
use Hyperf\Paginator\Paginator;
|
|
|
|
class CouponRebate implements CouponRebateInterface
|
|
{
|
|
|
|
public function isCouponRebate($data)
|
|
{
|
|
// 当前用户是否今日新注册并第一次提交评论
|
|
return $data;
|
|
}
|
|
|
|
}
|