37 lines
637 B
PHP
Executable File
37 lines
637 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\EmailBundle\Event;
|
|
|
|
use Mautic\CoreBundle\Event\CommonEvent;
|
|
use Mautic\EmailBundle\Entity\Email;
|
|
|
|
class EmailEvent extends CommonEvent
|
|
{
|
|
/**
|
|
* @param bool $isNew
|
|
*/
|
|
public function __construct(Email &$email, $isNew = false)
|
|
{
|
|
$this->entity = &$email;
|
|
$this->isNew = $isNew;
|
|
}
|
|
|
|
/**
|
|
* Returns the Email entity.
|
|
*
|
|
* @return Email
|
|
*/
|
|
public function getEmail()
|
|
{
|
|
return $this->entity;
|
|
}
|
|
|
|
/**
|
|
* Sets the Email entity.
|
|
*/
|
|
public function setEmail(Email $email): void
|
|
{
|
|
$this->entity = $email;
|
|
}
|
|
}
|