Spaces:
No application file
No application file
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; | |
} | |
} | |