1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Symfony\Component\Cache\Simple;
- use Symfony\Component\Cache\Traits\RedisTrait;
- class RedisCache extends AbstractCache
- {
- use RedisTrait;
-
- public function __construct($redisClient, string $namespace = '', int $defaultLifetime = 0)
- {
- $this->init($redisClient, $namespace, $defaultLifetime);
- }
- }
|