ShortenNumsFacade   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
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
 * ShortenNumsFacade Class
5
 *
6
 * Created 14/01/2020
7
 * Author: Cedric Megnie N. (Stonec0der).
8
 * Email: [email protected]
9
 *
10
 * This facade expose the functionalities of the ShortenNums Class.
11
 *
12
 * Licence: MIT
13
 */
14
15
namespace Stonec0der\ShortenNums;
16
17
use Illuminate\Support\Facades\Facade;
18
19
/**
20
 * @see \Stonec0der\ShortenNums\Skeleton\SkeletonClass
21
 */
22
class ShortenNumsFacade extends Facade
23
{
24
    /**
25
     * Get the registered name of the component.
26
     *
27
     * @return string
28
     */
29
    protected static function getFacadeAccessor()
30
    {
31
        return 'shorten-nums';
32
    }
33
}
34