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

ACM   A

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
 * 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