Test Failed
Push — master ( 9d73a2...14c4f6 )
by hugh
06:42
created

ACM::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
/**
3
 * Created by IntelliJ IDEA.
4
 * User: hugh.li
5
 * Date: 2020/3/15
6
 * Time: 18:36
7
 */
8
9
namespace HughCube\ACMClient;
10
11
use Illuminate\Support\Facades\Facade;
12
13
/**
14
 * @method static Client connection(string $name = null)
15
 *
16
 * @see Manager
17
 * @see Client
18
 */
19
class ACM extends Facade
20
{
21
    /**
22
     * Get the registered name of the component.
23
     *
24
     * @return string
25
     */
26
    protected static function getFacadeAccessor()
27
    {
28
        return 'acm';
29
    }
30
}
31