Completed
Push — master ( 292933...f9e91f )
by Keal
06:07 queued 03:05
created

Sms   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Odeen
5
 * Date: 2016/5/12
6
 * Time: 21:58.
7
 */
8
9
namespace LaravelSms\sms\Facades;
10
11
use Illuminate\Support\Facades\Facade as LaravelFacade;
12
13
class Sms extends LaravelFacade
14
{
15
    protected static function getFacadeAccessor()
16
    {
17
        return 'Sms';
18
    }
19
}
20