Passed
Push — master ( 517bd8...f7cc98 )
by Attila
06:55
created

Helper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 11
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * Contains the Helper facade class.
4
 *
5
 * @copyright   Copyright (c) 2016 Attila Fulop
6
 * @author      Attila Fulop
7
 * @license     MIT
8
 * @since       2016-10-30
9
 *
10
 */
11
12
13
namespace Konekt\Concord\Facades;
14
15
use Illuminate\Support\Facades\Facade;
16
17
class Helper extends Facade
18
{
19
20
    /**
21
     * Get the registered name of the component.
22
     *
23
     * @return string
24
     */
25
    protected static function getFacadeAccessor()
26
    {
27
        return 'concord.helper';
28
    }
29
}
30