Route   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * The file handle route facade.
4
 *
5
 * @link       https://github.com/maab16
6
 * @since      1.0.0
7
 */
8
9
namespace WPB\Support\Facades;
10
11
use Illuminate\Support\Facades\Facade;
12
13
/**
14
 * The config class.
15
 *
16
 * @since      1.0.0
17
 *
18
 * @author     Md Abu Ahsan basir <[email protected]>
19
 */
20
class Route extends Facade
21
{
22
    /**
23
     * Get the registered name of the component.
24
     *
25
     * @return string
26
     */
27
    protected static function getFacadeAccessor()
28
    {
29
        return \WPB\Router::class;
30
    }
31
}
32