averias/phpredis-bloom

View on GitHub
src/RedisBloomClient/Command/BloomCommandTrait.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
/**
* @project phpredis-bloom
* @author Rafael Campoy <rafa.campoy@gmail.com>
* @copyright 2019 Rafael Campoy <rafa.campoy@gmail.com>
* @license MIT
* @link https://github.com/averias/phpredis-bloom
*
* Copyright and license information, is included in
* the LICENSE file that is distributed with this source code.
*/
 
namespace Averias\RedisBloom\Command;
 
use Averias\RedisBloom\Command\BloomFilter\BloomFilterCommandTrait;
use Averias\RedisBloom\Command\CountMinSketch\CountMinSketchCommandTrait;
use Averias\RedisBloom\Command\CuckooFilter\CuckooFilterCommandTrait;
use Averias\RedisBloom\Command\TopK\TopKCommandTrait;
 
trait BloomCommandTrait
{
use BloomFilterCommandTrait;
use CuckooFilterCommandTrait;
use CountMinSketchCommandTrait;
use TopKCommandTrait;
}