AmoCrm   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of Laravel AmoCrm.
5
 *
6
 * (c) dotzero <[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 Dotzero\LaravelAmoCrm\Facades;
13
14
use Illuminate\Support\Facades\Facade;
15
16
/**
17
 * This is the AmoCrm facade class.
18
 *
19
 * @package Dotzero\LaravelAmoCrm\Facades
20
 * @author dotzero <[email protected]>
21
 * @link http://www.dotzero.ru/
22
 * @link https://github.com/dotzero/laravel-amocrm
23
 * @see \Dotzero\LaravelAmoCrm\AmoCrmServiceProvider
24
 */
25
class AmoCrm extends Facade
26
{
27
    /**
28
     * Get the registered name of the component.
29
     *
30
     * @return string
31
     */
32 2
    protected static function getFacadeAccessor()
33
    {
34 2
        return 'amocrm';
35
    }
36
}
37