瀏覽代碼

Add @property-read tags to client options class.

[ci skip]
Daniele Alessandri 11 年之前
父節點
當前提交
8d8a618d0e
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      lib/Predis/Configuration/Options.php

+ 8 - 0
lib/Predis/Configuration/Options.php

@@ -15,6 +15,14 @@ namespace Predis\Configuration;
  * Manages Predis options with filtering, conversion and lazy initialization of
  * values using a mini-DI container approach.
  *
+ * @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>
  */
 class Options implements OptionsInterface