PendingChain
in package
Table of Contents
- $chain : array<string|int, mixed>
- The jobs to be chained.
- $class : string
- The class name of the job being dispatched.
- __construct() : void
- Create a new PendingChain instance.
- dispatch() : PendingDispatch
- Dispatch the job with the given arguments.
Properties
$chain
The jobs to be chained.
public
array<string|int, mixed>
$chain
$class
The class name of the job being dispatched.
public
string
$class
Methods
__construct()
Create a new PendingChain instance.
public
__construct(string $class, array<string|int, mixed> $chain) : void
Parameters
- $class : string
- $chain : array<string|int, mixed>
Return values
void —dispatch()
Dispatch the job with the given arguments.
public
dispatch() : PendingDispatch