Файл: vendor/symfony/cache/Adapter/RedisAdapter.php
Строк: 34
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyComponentCacheAdapter;
use SymfonyComponentCacheMarshallerMarshallerInterface;
use SymfonyComponentCacheTraitsRedisTrait;
class RedisAdapter extends AbstractAdapter
{
use RedisTrait;
public function __construct(Redis|RedisArray|RedisCluster|PredisClientInterface|RelayRelay $redis, string $namespace = '', int $defaultLifetime = 0, ?MarshallerInterface $marshaller = null)
{
$this->init($redis, $namespace, $defaultLifetime, $marshaller);
}
}