Completed
Push — master ( 226b43...36df15 )
by Cedric
59s
created

ShortenNumsFacade::readableTrillion()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
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