mautic / app /bundles /LeadBundle /Event /CompanyEvent.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\LeadBundle\Event;
use Mautic\CoreBundle\Event\CommonEvent;
use Mautic\LeadBundle\Entity\Company;
class CompanyEvent extends CommonEvent
{
/**
* @param bool $isNew
* @param int $score
*/
public function __construct(
Company $company,
$isNew = false,
protected $score = 0
) {
$this->entity = $company;
$this->isNew = $isNew;
}
/**
* Returns the Company entity.
*
* @return Company
*/
public function getCompany()
{
return $this->entity;
}
/**
* Sets the Company entity.
*/
public function setCompany(Company $company): void
{
$this->entity = $company;
}
public function changeScore($score): void
{
$this->score = $score;
}
public function getScore()
{
return $this->score;
}
}