Completed
Push — master ( 0bad36...7c076d )
by Steve
01:35
created
spec/Counters/RedisClientMock.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -6,11 +6,18 @@
 block discarded – undo
6 6
 
7 7
 class RedisClient extends Client
8 8
 {
9
+    /**
10
+     * @param string $key
11
+     * @param integer $inc
12
+     */
9 13
     public function hincrby($key, $field, $inc)
10 14
     {
11 15
         return true;
12 16
     }
13 17
 
18
+    /**
19
+     * @param string $key
20
+     */
14 21
     public function hgetall($key)
15 22
     {
16 23
         return [];
Please login to merge, or discard this patch.