This commit is contained in:
2025-10-04 11:46:59 +07:00
commit 97427d7cff
498 changed files with 47596 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Hura8\Components\Analytics\Model;
class TrackDeviceInfo
{
public $ip_address;
public $user_agent;
public $referrer;
public $is_mobile;
public function __construct(string $ip_address, string $user_agent, string $referrer, bool $is_mobile)
{
$this->ip_address = $ip_address;
$this->user_agent = $user_agent;
$this->referrer = $referrer;
$this->is_mobile = $is_mobile;
}
}