DatabaseConnector::__construct()

void __construct(ConnectionResolverInterface $connections) Create a new connector instance. Parameters ConnectionResolverInterface $connections Return Value void

DatabaseConnector::connect()

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

DatabaseConnector

DatabaseConnector class DatabaseConnector implements ConnectorInterface (View source) Methods void __construct(ConnectionResolverInterface $connections) Create a new connector instance. Queue connect(array $config) Establish a queue connection.

DatabaseChannel::send()

Model send(mixed $notifiable, Notification $notification) Send the given notification. Parameters mixed $notifiable Notification $notification Return Value Model

DatabaseChannel

DatabaseChannel class DatabaseChannel (View source) Methods Model send(mixed $notifiable, Notification $notification) Send the given notification.

Database::__construct()

void __construct(array $servers = array()) Create a new Redis connection instance. Parameters array $servers Return Value void

Database::__call()

mixed __call(string $method, array $parameters) Dynamically make a Redis command. Parameters string $method array $parameters Return Value mixed

Database::subscribe()

void subscribe(array|string $channels, Closure $callback, string $connection = null, string $method = 'subscribe') Subscribe to a set of given channels for messages. Parameters array|string $channels Closure $callback string $connection string $method Return Value void

Database::psubscribe()

void psubscribe(array|string $channels, Closure $callback, string $connection = null) Subscribe to a set of given channels with wildcards. Parameters array|string $channels Closure $callback string $connection Return Value void

Database::connection()

ClientInterface|null connection(string $name = 'default') Get a specific Redis connection instance. Parameters string $name Return Value ClientInterface|null