Test Failed
Push — master ( 9287ab...2f3843 )
by Georgi
03:56
created

UI   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Epesi\Core\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
use Epesi\Core\UI as App;
7
8
class UI extends Facade
9
{
10
    /**
11
     * Get the registered name of the component.
12
     *
13
     * @return string
14
     */
15
    protected static function getFacadeAccessor()
16
    {
17
        return App::class;
18
    }
19
}
20