Skip to content

Commit e460e24

Browse files
committed
add annotation to RedisClientInterface
1 parent b23337d commit e460e24

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
<?php
2-
declare(strict_types=1);
3-
4-
namespace Palicao\PhpRedisTimeSeries\Client;
5-
6-
interface RedisClientInterface
7-
{
8-
function executeCommand(array $params);
9-
}
1+
<?php
2+
declare(strict_types=1);
3+
4+
namespace Palicao\PhpRedisTimeSeries\Client;
5+
6+
interface RedisClientInterface
7+
{
8+
/**
9+
* @param array $params
10+
* @return mixed
11+
*/
12+
public function executeCommand(array $params);
13+
}

0 commit comments

Comments
 (0)