wallabag/src/Wallabag/ImportBundle/Consumer/AMQPEntryConsumer.php
2024-01-22 19:15:54 +01:00

15 lines
332 B
PHP

<?php
namespace Wallabag\ImportBundle\Consumer;
use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface;
use PhpAmqpLib\Message\AMQPMessage;
class AMQPEntryConsumer extends AbstractConsumer implements ConsumerInterface
{
public function execute(AMQPMessage $msg)
{
return $this->handleMessage($msg->body);
}
}