TurboSMS   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Daaner\TurboSMS\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @method static int getBalance()
9
 * @method static array getItemsStatus($messageId)
10
 * @method static array getResponse($url, $body)
11
 * @method static array sendMessages($recipients, $text, $type = null)
12
 * @method static array getResponse($url, $body)
13
 * @method static void setApi($api)
14
 * @method static void setSMSSender($smsSender)
15
 * @method static void setViberSender($viberSender)
16
 * @method static void setStartTime($startTime)
17
 * @method static void setViberText($viberReplaceText)
18
 * @method static void setTTL($ttl)
19
 * @method static void setImageURL($image)
20
 * @method static void setCaption($caption)
21
 * @method static void setAction($action)
22
 * @method static void setCountClicks($countClicks)
23
 * @method static void setTransactional($isTransactional)
24
 *
25
 * @see \Daaner\TurboSMS
26
 */
27
class TurboSMS extends Facade
28
{
29
    /**
30
     * Get the registered name of the component.
31
     *
32
     * @return string
33
     */
34
    protected static function getFacadeAccessor()
35
    {
36
        return 'turbosms';
37
    }
38
}
39