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

Helper::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 0
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