Skip to content
Snippets Groups Projects
Commit 53b092d9 authored by Sascha Grossenbacher's avatar Sascha Grossenbacher
Browse files

Issue #3303219 by neclimdul: Fix queue factory docblocks

parent 8ea433f0
Branches
Tags
No related merge requests found
Pipeline #256201 passed with warnings
......@@ -38,8 +38,10 @@ class QueueRedisFactory implements QueueFactoryInterface {
/**
* Constructs this factory object.
*
* @param \Drupal\Core\Database\Connection $connection
* The Connection object containing the key-value tables.
* @param \Drupal\redis\ClientFactory $client_factory
* Client factory for generating the redis connection.
* @param \Drupal\Core\Site\Settings $settings
* Drupal settings for creating the connection.
*/
public function __construct(ClientFactory $client_factory, Settings $settings) {
$this->clientFactory = $client_factory;
......@@ -52,7 +54,7 @@ class QueueRedisFactory implements QueueFactoryInterface {
* @param string $name
* The name of the collection holding key and value pairs.
*
* @return \Drupal\Core\Queue\DatabaseQueue
* @return \Drupal\redis\Queue\PhpRedis|\Drupal\redis\Queue\Predis
* A key/value store implementation for the given $collection.
*/
public function get($name) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment