Spaces:
No application file
No application file
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; | |
} | |
} | |