Files
admin_hura_8/inc/Hura8/Components/Analytics/Model/TrackDeviceInfo.php

20 lines
460 B
PHP
Raw Normal View History

2024-01-31 11:36:25 +07:00
<?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;
}
}