PendingBroadcast

PendingBroadcast class PendingBroadcast (View source) Methods void __construct(Dispatcher $events, mixed $event) Create a new pending broadcast instance. void __destruct() Handle the object's destruction. $this toOthers() Broadcast the event to everyone except the current user.

PendingBroadcast::toOthers()

$this toOthers() Broadcast the event to everyone except the current user. Return Value $this

PendingBroadcast::__construct()

void __construct(Dispatcher $events, mixed $event) Create a new pending broadcast instance. Parameters Dispatcher $events mixed $event Return Value void

PendingBroadcast::__destruct()

void __destruct() Handle the object's destruction. Return Value void

PhpEngine

PhpEngine class PhpEngine implements EngineInterface (View source) Methods string get(string $path, array $data = array()) Get the evaluated contents of the view.

PhpEngine::get()

string get(string $path, array $data = array()) Get the evaluated contents of the view. Parameters string $path array $data Return Value string

Pipeline

Illuminate\Pipeline Classes Hub Pipeline PipelineServiceProvider

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.

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 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