48 lines
839 B
PHP
Executable File
48 lines
839 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\LeadBundle\Event;
|
|
|
|
use Mautic\CoreBundle\Event\CommonEvent;
|
|
use Mautic\LeadBundle\Entity\Lead;
|
|
use Mautic\LeadBundle\Entity\LeadNote;
|
|
|
|
class LeadNoteEvent extends CommonEvent
|
|
{
|
|
/**
|
|
* @param bool $isNew
|
|
*/
|
|
public function __construct(LeadNote $note, $isNew = false)
|
|
{
|
|
$this->entity = $note;
|
|
$this->isNew = $isNew;
|
|
}
|
|
|
|
/**
|
|
* Returns the LeadNote entity.
|
|
*
|
|
* @return LeadNote
|
|
*/
|
|
public function getNote()
|
|
{
|
|
return $this->entity;
|
|
}
|
|
|
|
/**
|
|
* Sets the LeadNote entity.
|
|
*/
|
|
public function setLeadNote(LeadNote $note): void
|
|
{
|
|
$this->entity = $note;
|
|
}
|
|
|
|
/**
|
|
* Returns the Lead.
|
|
*
|
|
* @return Lead
|
|
*/
|
|
public function getLead()
|
|
{
|
|
return $this->entity->getLead();
|
|
}
|
|
}
|