1 | <?php |
||
12 | class Redis |
||
13 | { |
||
14 | use Bits; |
||
15 | use Connection; |
||
16 | use Geocoding; |
||
17 | use HyperLogLogs; |
||
18 | use Keys; |
||
19 | use Strings; |
||
20 | |||
21 | protected $redis; |
||
22 | |||
23 | public function __construct() |
||
27 | |||
28 | /** |
||
29 | * Check that the given array is associative. |
||
30 | * |
||
31 | * @param array $array |
||
32 | * |
||
33 | * @return bool |
||
34 | */ |
||
35 | public function is_associative(array $array) |
||
39 | } |
||
40 |