SMS   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: vincent
5
 * Date: 12/13/17
6
 * Time: 6:39 AM.
7
 */
8
9
namespace CraftedSystems\LaravelSMS\Facades;
10
11
use Illuminate\Support\Facades\Facade;
12
13
/**
14
 * @method static gateway(string $gateway)
15
 * @method static send(string $recipient, string $message, $params = null)
16
 * @method static bool is_successful()
17
 * @method static getMessageID()
18
 * @method static getBalance()
19
 * @method static object getDeliveryReports(\Illuminate\Http\Request $request)
20
 *
21
 * @see \CraftedSystems\LaravelSMS\SMS
22
 */
23
class SMS extends Facade
24
{
25
    protected static function getFacadeAccessor()
26
    {
27
        return 'sms';
28
    }
29
}
30