Spaces:
No application file
No application file
File size: 1,152 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
<?php
namespace Mautic\EmailBundle\Event;
use Mautic\CoreBundle\Event\CommonEvent;
use Mautic\EmailBundle\Entity\Email;
use Mautic\EmailBundle\Entity\Stat;
use Symfony\Component\HttpFoundation\Request;
class EmailOpenEvent extends CommonEvent
{
private ?Email $email;
/**
* @param Request $request
* @param bool $firstTime
*/
public function __construct(
Stat $stat,
private $request,
private $firstTime = false
) {
$this->entity = $stat;
$this->email = $stat->getEmail();
}
/**
* Returns the Email entity.
*
* @return Email
*/
public function getEmail()
{
return $this->email;
}
/**
* Get email request.
*
* @return string
*/
public function getRequest()
{
return $this->request;
}
/**
* @return Stat
*/
public function getStat()
{
return $this->entity;
}
/**
* Returns if this is first time the email is read.
*
* @return bool
*/
public function isFirstTime()
{
return $this->firstTime;
}
}
|