Add userAgentType property to statistics entities
[MAILPOET-3736]
This commit is contained in:
@ -58,6 +58,12 @@ class StatisticsClickEntity {
|
||||
*/
|
||||
private $userAgent;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", nullable=true)
|
||||
* @var string|null
|
||||
*/
|
||||
private $userAgentType;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="integer")
|
||||
* @var int
|
||||
@ -163,4 +169,12 @@ class StatisticsClickEntity {
|
||||
public function setUserAgent(?UserAgentEntity $userAgent): void {
|
||||
$this->userAgent = $userAgent;
|
||||
}
|
||||
|
||||
public function getUserAgentType(): ?string {
|
||||
return $this->userAgentType;
|
||||
}
|
||||
|
||||
public function setUserAgentType(?string $userAgentType): void {
|
||||
$this->userAgentType = $userAgentType;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user