Code Duplication    Length = 7-7 lines in 2 locations

Redis/Predis.php 2 locations

@@ 112-118 (lines=7) @@
109
        return $options;
110
    }
111
112
    public function zScan($key, &$cursor, $pattern = '', $count = 0)
113
    {
114
        $this->setCursor($cursor);
115
        $results = $this->predis->zscan($key, $cursor, $this->getOptions($pattern, $count));
116
117
        return $this->getResults($results, $cursor);
118
    }
119
120
    public function mGet(array $keys)
121
    {
@@ 144-150 (lines=7) @@
141
        }
142
    }
143
144
    public function hScan($key, &$cursor, $pattern = '', $count = 0)
145
    {
146
        $this->setCursor($cursor);
147
        $results = $this->predis->hscan($key, $cursor, $this->getOptions($pattern, $count));
148
149
        return $this->getResults($results, $cursor);
150
    }
151
152
    public function zPop($key)
153
    {