Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 482 Bytes

null.md

File metadata and controls

27 lines (18 loc) · 482 Bytes

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();

$psrContext = $connectionFactory->createContext();

back to index