123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Symfony\Component\Cache\Marshaller\MarshallerInterface;
- use Symfony\Component\Cache\Traits\RedisTrait;
- class RedisAdapter extends AbstractAdapter
- {
- use RedisTrait;
-
- public function __construct($redisClient, string $namespace = '', int $defaultLifetime = 0, MarshallerInterface $marshaller = null)
- {
- $this->init($redisClient, $namespace, $defaultLifetime, $marshaller);
- }
- }
|