Completed
Pull Request — master (#746)
by
unknown
62:20
created

Authorizer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 1
c 2
b 0
f 1
lcom 0
cbo 1
dl 0
loc 12
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of OAuth 2.0 Laravel.
5
 *
6
 * (c) Luca Degasperi <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace LucaDegasperi\OAuth2Server\Facades;
13
14
use Illuminate\Support\Facades\Facade;
15
16
/**
17
 * This is the authorizer facade class.
18
 * 
19
 * @see \LucaDegasperi\OAuth2Server\Authorizer
20
 * 
21
 * @author Luca Degasperi <[email protected]>
22
 */
23
class Authorizer extends Facade
24
{
25
    /**
26
     * Get the registered name of the component.
27
     *
28
     * @return string
29
     */
30
    protected static function getFacadeAccessor()
31
    {
32
        return 'oauth2-server.authorizer';
33
    }
34
}
35