c
This commit is contained in:
28
inc/Hura8/Components/Analytics/Model/TrackRouteInfo.php
Normal file
28
inc/Hura8/Components/Analytics/Model/TrackRouteInfo.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace Hura8\Components\Analytics\Model;
|
||||
|
||||
class TrackRouteInfo
|
||||
{
|
||||
public $url;
|
||||
public $module;
|
||||
public $view;
|
||||
public $view_id;
|
||||
public $query;
|
||||
|
||||
public function __construct(
|
||||
string $url,
|
||||
string $module,
|
||||
string $view,
|
||||
string $view_id,
|
||||
array $query = []
|
||||
)
|
||||
{
|
||||
$this->url = $url;
|
||||
$this->module = $module;
|
||||
$this->view = $view;
|
||||
$this->view_id = $view_id;
|
||||
$this->query = $query;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user