mautic / app /bundles /ChannelBundle /Event /MessageQueueBatchProcessEvent.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\ChannelBundle\Event;
use Mautic\ChannelBundle\Entity\MessageQueue;
use Symfony\Contracts\EventDispatcher\Event;
class MessageQueueBatchProcessEvent extends Event
{
/**
* @param MessageQueue[] $messages
*/
public function __construct(
private array $messages,
private $channel,
private $channelId
) {
}
public function checkContext($channel): bool
{
return $channel === $this->channel;
}
/**
* @return array
*/
public function getMessages()
{
return $this->messages;
}
/**
* @return mixed
*/
public function getChannel()
{
return $this->channel;
}
/**
* @return mixed
*/
public function getChannelId()
{
return $this->channelId;
}
}