chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?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;
}
}