Completed
Push — master ( eace04...ca5196 )
by Alexander
03:01
created

Responder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
namespace Flugg\Responder\Facades;
4
5
use Flugg\Responder\Contracts\Responder as ResponderContract;
6
use Illuminate\Support\Facades\Facade;
7
8
/**
9
 * An optional facade you can register to quickly access the responder service.
10
 *
11
 * @package Laravel Responder
12
 * @author  Alexander Tømmerås <[email protected]>
13
 * @license The MIT License
14
 */
15
class Responder extends Facade
16
{
17
    /**
18
     * Get the registered name of the component.
19
     *
20
     * @return string
21
     */
22
    protected static function getFacadeAccessor()
23
    {
24
        return ResponderContract::class;
25
    }
26
}