interface Pipeline

Methods

$this
send(mixed $parcel)

Specify the parcel to be passed through pipeline.

$this
through(array $pipes)

Specify the actions the parcel will be passed through.

$this
with(ArgumentBag $args)

Add the arguments to be passed along with the parcel.

mixed
to(Closure $destination)

Dispatch the parcel and call the final callback at the end.

Details

at line 13
$this send(mixed $parcel)

Specify the parcel to be passed through pipeline.

Parameters

mixed $parcel

Return Value

$this

at line 21
$this through(array $pipes)

Specify the actions the parcel will be passed through.

Parameters

array $pipes

Return Value

$this

at line 29
$this with(ArgumentBag $args)

Add the arguments to be passed along with the parcel.

Parameters

ArgumentBag $args

Return Value

$this

at line 37
mixed to(Closure $destination)

Dispatch the parcel and call the final callback at the end.

Parameters

Closure $destination

Return Value

mixed