class Pipeline extends Pipeline (View source)

This extended pipeline catches any exceptions that occur during each slice.

The exceptions are converted to HTTP responses for proper middleware handling.

Methods

void
__construct( Container $container)

Create a new class instance.

from Pipeline
$this
send( mixed $passable)

Set the object being sent through the pipeline.

from Pipeline
$this
through( array|mixed $pipes)

Set the array of pipes.

from Pipeline
$this
via( string $method)

Set the method to call on the pipes.

from Pipeline
mixed
then( Closure $destination)

Run the pipeline with a final destination callback.

from Pipeline

Details

in Pipeline at line line 45
void __construct( Container $container)

Create a new class instance.

Parameters

Container $container

Return Value

void

in Pipeline at line line 56
$this send( mixed $passable)

Set the object being sent through the pipeline.

Parameters

mixed $passable

Return Value

$this

in Pipeline at line line 69
$this through( array|mixed $pipes)

Set the array of pipes.

Parameters

array|mixed $pipes

Return Value

$this

in Pipeline at line line 82
$this via( string $method)

Set the method to call on the pipes.

Parameters

string $method

Return Value

$this

in Pipeline at line line 95
mixed then( Closure $destination)

Run the pipeline with a final destination callback.

Parameters

Closure $destination

Return Value

mixed