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.
25 lines
541 B
25 lines
541 B
<?php
|
|
|
|
namespace app\api\service\statistics;
|
|
|
|
use app\api\model\User;
|
|
use app\common\service\BaseService;
|
|
|
|
class UserData extends BaseService
|
|
{
|
|
protected User $userModel;
|
|
|
|
public function initialize()
|
|
{
|
|
parent::initialize(); // TODO: Change the autogenerated stub
|
|
$this->userModel = new User();
|
|
}
|
|
public function getUserData($startDate = null, $endDate = null): array
|
|
{
|
|
return [
|
|
'visitorCount' => 0,
|
|
'viewCount' => 0,
|
|
'newUserCount' => 0,
|
|
];
|
|
}
|
|
} |