Completed
Push — master ( 7c218c...593722 )
by Jake
02:19
created

SEOFacade::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php 
2
3
namespace MeestorHok\Blue\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @see \MeestorHok\Blue\SEOGenerator
9
 */
10
class SEOFacade extends Facade 
11
{
12
    /**
13
     * Get the registered name of the component.
14
     *
15
     * @return string
16
     */
17
    protected static function getFacadeAccessor()
18
    {
19
        return 'SEO';
20
    }
21
}