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.

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

QueryException::getSql()

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

QueryException::getBindings()

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

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.

PusherBroadcaster::__construct()

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

PusherBroadcaster::validAuthenticationResponse()

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

PusherBroadcaster::getPusher()

Pusher getPusher() Get the Pusher SDK instance. Return Value Pusher

PusherBroadcaster::channel()

$this channel(string $channel, callable $callback) Register a channel authenticator. Parameters string $channel callable $callback Return Value $this

PusherBroadcaster::broadcast()

void broadcast(array $channels, string $event, array $payload = array()) Broadcast the given event. Parameters array $channels string $event array $payload Return Value void