Pipeline::through()

$this through(dynamic|array $stops) Set the stops of the pipeline. Parameters dynamic|array $stops Return Value $this

Pipeline::then()

mixed then(Closure $destination) Run the pipeline with a final destination callback. Parameters Closure $destination Return Value mixed

Pipeline::then()

mixed then(Closure $destination) Run the pipeline with a final destination callback. Parameters Closure $destination Return Value mixed

Pipeline::then()

mixed then(Closure $destination) Run the pipeline with a final destination callback. Parameters Closure $destination Return Value mixed

Pipeline::send()

$this send(mixed $passable) Set the object being sent through the pipeline. Parameters mixed $passable Return Value $this

Pipeline::send()

$this send(mixed $passable) Set the object being sent through the pipeline. Parameters mixed $passable Return Value $this

Pipeline::send()

$this send(mixed $traveler) Set the traveler object being sent on the pipeline. Parameters mixed $traveler Return Value $this

Pipeline

Pipeline 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 = null) 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(st

Pipeline

Pipeline class Pipeline implements Pipeline (View source) Methods void __construct(Container $container = null) Create a new class instance. $this send(mixed $passable) Set the object being sent through the pipeline. $this through(array|mixed $pipes) Set the array of pipes. $this via(string $method) Set the method to call on the pipes. mixed then(Closure $destination) Run the pipeline with a final destination callback.

Pipeline

Pipeline interface Pipeline (View source) Methods $this send(mixed $traveler) Set the traveler object being sent on the pipeline. $this through(dynamic|array $stops) Set the stops of the pipeline. $this via(string $method) Set the method to call on the stops. mixed then(Closure $destination) Run the pipeline with a final destination callback.