@@ -21,31 +21,33 @@ public function __construct($parameters = null, $options = null)
21
21
*/
22
22
public function pop (string $ key ): ?string
23
23
{
24
- return $ this ->call ('lpop ' , [$ key ]);
24
+ $ result = $ this ->call ('lpop ' , [$ key ]);
25
+
26
+ return null === $ result ? null : (string ) $ result ;
25
27
}
26
28
27
29
/**
28
30
* {@inheritdoc}
29
31
*/
30
32
public function push (string $ key , ...$ values ): int
31
33
{
32
- return $ this ->call ('rpush ' , array_merge ([$ key ], $ values ));
34
+ return ( int ) $ this ->call ('rpush ' , array_merge ([$ key ], $ values ));
33
35
}
34
36
35
37
/**
36
38
* {@inheritdoc}
37
39
*/
38
40
public function count (string $ key ): int
39
41
{
40
- return $ this ->call ('llen ' , [$ key ]);
42
+ return ( int ) $ this ->call ('llen ' , [$ key ]);
41
43
}
42
44
43
45
/**
44
46
* {@inheritdoc}
45
47
*/
46
48
public function remove (string $ key ): int
47
49
{
48
- return $ this ->call ('del ' , [$ key ]);
50
+ return ( int ) $ this ->call ('del ' , [$ key ]);
49
51
}
50
52
51
53
/**
@@ -54,10 +56,13 @@ public function remove(string $key): int
54
56
* @param string $command the command ID
55
57
* @param mixed[] $arguments the arguments for the command
56
58
*
57
- * @return mixed
59
+ * @return int|bool|string|float|null
58
60
*/
59
61
protected function call (string $ command , array $ arguments = [])
60
62
{
61
- return $ this ->executeCommand ($ this ->createCommand ($ command , $ arguments ));
63
+ /** @var int|bool|string|float|null $result */
64
+ $ result = $ this ->executeCommand ($ this ->createCommand ($ command , $ arguments ));
65
+
66
+ return $ result ;
62
67
}
63
68
}
0 commit comments