Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 575 Bytes

null.md

File metadata and controls

35 lines (25 loc) · 575 Bytes
layout title parent nav_order
default
Null
Transports
3

{% include support.md %}

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