We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d876d commit f7beaa7Copy full SHA for f7beaa7
lib/Cas/Ticket/RedisTicketStore.php
@@ -26,15 +26,15 @@
26
namespace SimpleSAML\Module\casserver\Cas\Ticket;
27
28
use SimpleSAML\Configuration;
29
-use SimpleSAML\Store\Redis;
+use SimpleSAML\Store\RedisStore;
30
31
class RedisTicketStore extends TicketStore
32
{
33
/** @var string $prefix */
34
private string $prefix = '';
35
36
- /** @var \SimpleSAML\Store\Redis $redis */
37
- private Redis $redis;
+ /** @var \SimpleSAML\Store\RedisStore $redis */
+ private RedisStore $redis;
38
39
40
/**
@@ -50,7 +50,7 @@ public function __construct(Configuration $config)
50
$this->prefix = $storeConfig['prefix'];
51
}
52
53
- $this->redis = new Redis();
+ $this->redis = new RedisStore();
54
55
56
0 commit comments