* */ declare(strict_types=1); namespace Phpfastcache\Cluster; use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface; /** * Interface ClusterInterface * * @package Phpfastcache\Cluster */ interface ClusterPoolInterface extends ExtendedCacheItemPoolInterface { /** * @return ExtendedCacheItemPoolInterface[] */ public function getClusterPools(): array; }