GeoIP   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 9
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 2 1
1
<?php
2
/*
3
* File: GeoIP.php
4
* Category: Facade
5
* Author: M.Goldenbaum
6
* Created: 18.10.20 00:46
7
* Updated: -
8
*
9
* Description:
10
*  -
11
*/
12
13
namespace Webklex\LaravelGeoIP\Facades;
14
15
use Illuminate\Support\Facades\Facade;
16
17
/**
18
 * Class GeoIP
19
 *
20
 * @package Webklex\LaravelGeoIP\Facades
21
 *
22
 * @method array current()
23
 * @method array get($ip)
24
 */
25
class GeoIP extends Facade {
26
27
    /**
28
     * Get the registered name of the component.
29
     *
30
     * @return string
31
     */
32
    protected static function getFacadeAccessor() {
33
        return \Webklex\GeoIP\GeoIP::class;
34
    }
35
}