cast/amqp

Amqp 类

v1.0.1 2019-12-11 16:30 UTC

This package is auto-updated.

Last update: 2024-09-12 02:40:41 UTC


README

安装

composer require cast/amqp

设置事件监听器

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        // ...
        LogEvent::class => [
            AmqpLogEventListener::class
        ],
    ];