GeoIP::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
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
}