37 lines
622 B
PHP
Executable File
37 lines
622 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\UserBundle\Event;
|
|
|
|
use Mautic\CoreBundle\Event\CommonEvent;
|
|
use Mautic\UserBundle\Entity\User;
|
|
|
|
class UserEvent extends CommonEvent
|
|
{
|
|
/**
|
|
* @param bool $isNew
|
|
*/
|
|
public function __construct(User &$user, $isNew = false)
|
|
{
|
|
$this->entity = &$user;
|
|
$this->isNew = $isNew;
|
|
}
|
|
|
|
/**
|
|
* Returns the User entity.
|
|
*
|
|
* @return User
|
|
*/
|
|
public function getUser()
|
|
{
|
|
return $this->entity;
|
|
}
|
|
|
|
/**
|
|
* Sets the User entity.
|
|
*/
|
|
public function setUser(User $user): void
|
|
{
|
|
$this->entity = $user;
|
|
}
|
|
}
|