Skip to content

Commit f7beaa7

Browse files
committed
Stores have been refactored in SSP
1 parent 51d876d commit f7beaa7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/Cas/Ticket/RedisTicketStore.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
namespace SimpleSAML\Module\casserver\Cas\Ticket;
2727

2828
use SimpleSAML\Configuration;
29-
use SimpleSAML\Store\Redis;
29+
use SimpleSAML\Store\RedisStore;
3030

3131
class RedisTicketStore extends TicketStore
3232
{
3333
/** @var string $prefix */
3434
private string $prefix = '';
3535

36-
/** @var \SimpleSAML\Store\Redis $redis */
37-
private Redis $redis;
36+
/** @var \SimpleSAML\Store\RedisStore $redis */
37+
private RedisStore $redis;
3838

3939

4040
/**
@@ -50,7 +50,7 @@ public function __construct(Configuration $config)
5050
$this->prefix = $storeConfig['prefix'];
5151
}
5252

53-
$this->redis = new Redis();
53+
$this->redis = new RedisStore();
5454
}
5555

5656

0 commit comments

Comments
 (0)