Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 820 Bytes

null.md

File metadata and controls

36 lines (23 loc) · 820 Bytes

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