PusherBroadcaster::validAuthenticationResponse()

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

PusherBroadcaster::__construct()

void __construct(Pusher $pusher) Create a new broadcaster instance. Parameters Pusher $pusher Return Value void

QueryException

QueryException class QueryException extends PDOException (View source) Methods void __construct(string $sql, array $bindings, Exception $previous) Create a new query exception instance. string getSql() Get the SQL for the query. array getBindings() Get the bindings for the query.

QueryException::getBindings()

array getBindings() Get the bindings for the query. Return Value array

QueryException::getSql()

string getSql() Get the SQL for the query. Return Value string

QueryException::__construct()

void __construct(string $sql, array $bindings, Exception $previous) Create a new query exception instance. Parameters string $sql array $bindings Exception $previous Return Value void

QueryExecuted

QueryExecuted class QueryExecuted (View source) Properties string $sql The SQL query that was executed. array $bindings The array of query bindings. float $time The number of milliseconds it took to execute the query. Connection $connection The database connection instance. string $connectionName The database connection name.

QueryExecuted::__construct()

__construct(string $sql, array $bindings, float $time, $connection) Create a new event instance. Parameters string $sql array $bindings float $time $connection

Queue

Illuminate\Queue Namespaces Illuminate\Queue\CapsuleIlluminate\Queue\ConnectorsIlluminate\Queue\ConsoleIlluminate\Queue\FailedIlluminate\Queue\Jobs Classes BeanstalkdQueue FailConsoleServiceProvider IronQueue Listener Queue QueueManager QueueServiceProvider RedisQueue SqsQueue SyncQueue Worker

Queue

Queue interface Queue (View source) Methods int size(string $queue = null) Get the size of the queue. mixed push(string $job, mixed $data = '', string $queue = null) Push a new job onto the queue. mixed pushRaw(string $payload, string $queue = null, array $options = array()) Push a raw payload onto the queue. mixed later(DateTime|int $delay, string $job, mixed $data = '', string $queue = null) Push a new job onto the queue after a delay. mixed pushOn(string $queue, str