Completed
Push — master ( 7cc46b...33674b )
by Roberto
15:03
created

Geocoding   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 0
dl 0
loc 32
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A geoAdd() 0 4 1
A geoHash() 0 4 1
A geoPos() 0 4 1
A geoDist() 0 4 1
A geoRadius() 0 4 1
A geoRadiusByMember() 0 4 1
1
<?php
2
3
namespace Webdcg\Redis\Traits;
4
5
trait Geocoding
6
{
7
    public function geoAdd(): bool
8
    {
9
        return false;
10
    }
11
12
    public function geoHash(): bool
13
    {
14
        return false;
15
    }
16
17
    public function geoPos(): bool
18
    {
19
        return false;
20
    }
21
22
    public function geoDist(): bool
23
    {
24
        return false;
25
    }
26
27
    public function geoRadius(): bool
28
    {
29
        return false;
30
    }
31
32
    public function geoRadiusByMember(): bool
33
    {
34
        return false;
35
    }
36
}
37