26 lines
388 B
PHP
Executable File
26 lines
388 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\PointBundle\Event;
|
|
|
|
use Mautic\PointBundle\Entity\Group;
|
|
|
|
final class GroupEvent
|
|
{
|
|
public function __construct(
|
|
private Group $entity,
|
|
) {
|
|
}
|
|
|
|
public function getGroup(): Group
|
|
{
|
|
return $this->entity;
|
|
}
|
|
|
|
public function setGroup(Group $group): void
|
|
{
|
|
$this->entity = $group;
|
|
}
|
|
}
|