SMSFactorTest::getFacadeRoot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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\Tests\SMSFactor\Facades;
13
14
use IlGala\SMSFactor\SMSFactorManager;
15
use IlGala\SMSFactor\Facades\SMSFactor;
16
use GrahamCampbell\TestBenchCore\FacadeTrait;
17
use IlGala\Tests\SMSFactor\AbstractTestCase;
18
19
/**
20
 * This is the smsfactor facade test class.
21
 *
22
 * @author Filippo Galante <[email protected]>
23
 */
24
class SMSFactorTest extends AbstractTestCase
25
{
26
    use FacadeTrait;
27
28
    /**
29
     * Get the facade accessor.
30
     *
31
     * @return string
32
     */
33
    protected function getFacadeAccessor()
34
    {
35
        return 'smsfactor';
36
    }
37
38
    /**
39
     * Get the facade class.
40
     *
41
     * @return string
42
     */
43
    protected function getFacadeClass()
44
    {
45
        return SMSFactor::class;
46
    }
47
48
    /**
49
     * Get the facade root.
50
     *
51
     * @return string
52
     */
53
    protected function getFacadeRoot()
54
    {
55
        return SMSFactorManager::class;
56
    }
57
}
58