Completed
Push — master ( 7e4f78...5ca817 )
by Filippo
02:47
created

SMSFactor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 14
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of Laravel SMSFactor.
5
 *
6
 * (c) Filippo Galante <[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 IlGala\SMSFactor\Facades;
13
14
use Illuminate\Support\Facades\Facade;
15
16
/**
17
 * This is the smsfactor facade class.
18
 *
19
 * @author ilgala
20
 */
21
class SMSFactor extends Facade
22
{
23
24
    /**
25
     * Get the registered name of the component.
26
     *
27
     * @return string
28
     */
29
    protected static function getFacadeAccessor()
30
    {
31
        return 'smsfactor';
32
    }
33
34
}
35