Passed
Pull Request — main (#22)
by Andrey
28:59 queued 16:23
created

Digit   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Helldar\Support\Facades\Helpers;
4
5
use Helldar\Support\Facades\BaseFacade;
6
use Helldar\Support\Helpers\Digit as Helper;
7
8
/**
9
 * @method static float rounded(float $number, int $length = 4, int $precision = 1)
10
 * @method static int factorial(int $n = 0)
11
 * @method static string shortKey(int $number, string $chars = 'abcdefghijklmnopqrstuvwxyz')
12
 * @method static string toShort(float $number, int $precision = 1)
13
 */
14
final class Digit extends BaseFacade
15
{
16
    protected static function getFacadeAccessor()
17
    {
18
        return Helper::class;
19
    }
20
}
21