20 lines
460 B
PHP
20 lines
460 B
PHP
|
|
<?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;
|
||
|
|
}
|
||
|
|
}
|