|
@@ -11,16 +11,22 @@
|
|
|
|
|
|
namespace Predis\Configuration;
|
|
namespace Predis\Configuration;
|
|
|
|
|
|
|
|
+use Predis\Command\Processor\ProcessorInterface;
|
|
|
|
+use Predis\Connection\Aggregate\ClusterInterface;
|
|
|
|
+use Predis\Connection\Aggregate\ReplicationInterface;
|
|
|
|
+use Predis\Connection\FactoryInterface;
|
|
|
|
+use Predis\Profile\ProfileInterface;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Interface defining a container for client options.
|
|
* Interface defining a container for client options.
|
|
*
|
|
*
|
|
- * @property-read mixed aggregate Custom connection aggregator.
|
|
|
|
- * @property-read mixed cluster Aggregate connection for clustering.
|
|
|
|
- * @property-read mixed connections Connection factory.
|
|
|
|
- * @property-read mixed exceptions Toggles exceptions in client for -ERR responses.
|
|
|
|
- * @property-read mixed prefix Key prefixing strategy using the given prefix.
|
|
|
|
- * @property-read mixed profile Server profile.
|
|
|
|
- * @property-read mixed replication Aggregate connection for replication.
|
|
|
|
|
|
+ * @property-read callable $aggregate Custom connection aggregator.
|
|
|
|
+ * @property-read ClusterInterface $cluster Aggregate connection for clustering.
|
|
|
|
+ * @property-read FactoryInterface $connections Connection factory.
|
|
|
|
+ * @property-read bool $exceptions Toggles exceptions in client for -ERR responses.
|
|
|
|
+ * @property-read ProcessorInterface $prefix Key prefixing strategy using the given prefix.
|
|
|
|
+ * @property-read ProfileInterface $profile Server profile.
|
|
|
|
+ * @property-read ReplicationInterface $replication Aggregate connection for replication.
|
|
*
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
*/
|