Link Search Menu Expand Document

Supporting Enqueue

Enqueue is an MIT-licensed open source project with its ongoing development made possible entirely by the support of community and our customers. If you’d like to join them, please consider:


NULL transport

This a special transport implementation, kind of stub. It does not send nor receive anything. Useful in tests for example.

Installation

$ composer require enqueue/null

Create context

<?php
use Enqueue\Null\NullConnectionFactory;

$connectionFactory = new NullConnectionFactory();

$context = $connectionFactory->createContext();

back to index