tracking/Classes/Domain/Model/Pageview.php
Daniel Siepmann 413afa1851
Update
* Rector result with cgl applied
* Fix constructor multi line by hand
* Migrate away from prophecy.
2024-02-07 19:21:15 +01:00

82 lines
2 KiB
PHP

<?php
declare(strict_types=1);
/*
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
namespace DanielSiepmann\Tracking\Domain\Model;
use DateTimeImmutable;
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
class Pageview implements HasUserAgent
{
public function __construct(
private readonly int $pageUid,
private readonly SiteLanguage $language,
private readonly DateTimeImmutable $crdate,
private readonly int $pageType,
private readonly string $url,
private readonly string $userAgent,
private readonly int $uid = 0
) {
}
public function getUid(): int
{
return $this->uid;
}
public function getPageUid(): int
{
return $this->pageUid;
}
public function getLanguage(): SiteLanguage
{
return $this->language;
}
public function getCrdate(): DateTimeImmutable
{
return $this->crdate;
}
public function getPageType(): int
{
return $this->pageType;
}
public function getUrl(): string
{
return $this->url;
}
public function getUserAgent(): string
{
return $this->userAgent;
}
public function getOperatingSystem(): string
{
return Extractor::getOperatingSystem($this);
}
}