Passed
Push — master ( 32db04...fadd64 )
by Vasyl
02:53
created

Facade   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Fomvasss\Variable;
4
5
/**
6
 * @see \Fomvasss\Variable\VariableManager
7
 */
8
class Facade extends \Illuminate\Support\Facades\Facade
9
{
10
    /**
11
     * @return string
12
     */
13
    protected static function getFacadeAccessor()
14
    {
15
        return VariableManagerContract::class;
16
    }
17
}
18