chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
declare(strict_types=1);
namespace Mautic\CampaignBundle\Event;
final class DeleteEvent extends \Symfony\Contracts\EventDispatcher\Event
{
/**
* @param string[] $eventIds
*/
public function __construct(private array $eventIds)
{
}
/**
* @return string[]
*/
public function getEventIds(): array
{
return $this->eventIds;
}
}