Code Duplication    Length = 8-8 lines in 2 locations

src/Redis/Redis.php 2 locations

@@ 993-1000 (lines=8) @@
990
        return $this->dispatch(Builder::build($command, $args));
991
    }
992
993
    public function geoRadius($key, $longitude, $latitude, $unit, $command, $count, $sort)
994
    {
995
        // TODO: Implement geoRadius() method.
996
        $command = Enum::GEORADIUS;
997
        $args = [$key, $longitude, $latitude, $unit, $command, $count, $sort];
998
999
        return $this->dispatch(Builder::build($command, $args));
1000
    }
1001
1002
    public function geoRadiusByMember($key, $member, $unit, $command, $count, $sort, $store, $storeDist)
1003
    {
@@ 1002-1009 (lines=8) @@
999
        return $this->dispatch(Builder::build($command, $args));
1000
    }
1001
1002
    public function geoRadiusByMember($key, $member, $unit, $command, $count, $sort, $store, $storeDist)
1003
    {
1004
        // TODO: Implement geoRadiusByMember() method.
1005
        $command = Enum::GEORADIUSBYMEMBER;
1006
        $args = [$key, $member, $unit, $command, $count, $sort, $store, $storeDist];
1007
1008
        return $this->dispatch(Builder::build($command, $args));
1009
    }
1010
1011
    public function pSubscribe(...$patterns)
1012
    {