Facade   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
ccs 0
cts 0
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php namespace Rocket\Taxonomy\Support\Laravel5;
2
3
/**
4
 * Class Taxonomy
5
 */
6
class Facade extends \Illuminate\Support\Facades\Facade
7
{
8
    const TERM_CONTENT = 0;
9
    const TERM_CATEGORY = 1;
10
11
    /**
12
     * Get the registered name of the component.
13
     *
14
     * @return string
15
     */
16
    protected static function getFacadeAccessor()
17
    {
18
        return 'taxonomy';
19
    }
20
}
21