Move @property-read tags for parameters and options to interfaces.

This actually makes sense since whatever the actual implementation is,
classes implementing these interfaces should provide at least those
properties that are actively used through the library.
This commit is contained in:
Daniele Alessandri
2013-12-22 14:54:08 +01:00
parent cfa456fdd1
commit 9a38d2caec
4 changed files with 25 additions and 26 deletions
@@ -14,6 +14,14 @@ namespace Predis\Configuration;
/**
* Defines an options container class.
*
* @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.
*
* @author Daniele Alessandri <suppakilla@gmail.com>
*/
interface OptionsInterface