NullBroadcaster::validAuthenticationResponse()

mixed validAuthenticationResponse(Request $request, mixed $result) Return the valid authentication response. Parameters Request $request mixed $result Return Value mixed

NullConnector

NullConnector class NullConnector implements ConnectorInterface (View source) Methods Queue connect(array $config) Establish a queue connection.

NullConnector::connect()

Queue connect(array $config) Establish a queue connection. Parameters array $config Return Value Queue

NullFailedJobProvider

NullFailedJobProvider class NullFailedJobProvider implements FailedJobProviderInterface (View source) Methods int|null log(string $connection, string $queue, string $payload, Exception $exception) Log a failed job into storage. array all() Get a list of all of the failed jobs. array find(mixed $id) Get a single failed job. bool forget(mixed $id) Delete a single failed job from storage. void flush() Flush all of the failed jobs from storage.

NullFailedJobProvider::all()

array all() Get a list of all of the failed jobs. Return Value array

NullFailedJobProvider::find()

array find(mixed $id) Get a single failed job. Parameters mixed $id Return Value array

NullFailedJobProvider::flush()

void flush() Flush all of the failed jobs from storage. Return Value void

NullFailedJobProvider::forget()

bool forget(mixed $id) Delete a single failed job from storage. Parameters mixed $id Return Value bool

NullFailedJobProvider::log()

int|null log(string $connection, string $queue, string $payload, Exception $exception) Log a failed job into storage. Parameters string $connection string $queue string $payload Exception $exception Return Value int|null

NullQueue

NullQueue class NullQueue extends Queue implements Queue (View source) Methods mixed pushOn(string $queue, string $job, mixed $data = '') Push a new job onto the queue. from Queue mixed laterOn(string $queue, DateTime|int $delay, string $job, mixed $data = '') Push a new job onto the queue after a delay. from Queue mixed bulk(array $jobs, mixed $data = '', string $queue = null) Push an array of jobs onto the queue. from Queue void setContainer(Container $container) Set the IoC