24 lines
394 B
PHP
Executable File
24 lines
394 B
PHP
Executable File
<?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;
|
|
}
|
|
}
|