Passed
Push — main ( 35cea8...263c2f )
by Andrey
21:51 queued 20:06
created

Sorter   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Helldar\Support\Facades\Callbacks;
4
5
use Helldar\Support\Callbacks\Sorter as Callback;
6
use Helldar\Support\Facades\Facade;
7
8
/**
9
 * @method static array specialChars()
10
 * @method static callable default()
11
 */
12
class Sorter extends Facade
13
{
14 19
    protected static function getFacadeAccessor()
15
    {
16 19
        return Callback::class;
17
    }
18
}
19