Arr   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Helldar\LaravelLangPublisher\Facades;
4
5
use Closure;
6
use Helldar\LaravelLangPublisher\Support\Arr as ArrSupport;
7
use Illuminate\Support\Facades\Facade;
8
9
/**
10
 * @method static array unique(array $array)
11
 * @method static array first(array $array)
12
 * @method static array keys(array $array)
13
 * @method static array transform(array $array, Closure $callback)
14
 */
15
final class Arr extends Facade
16
{
17
    protected static function getFacadeAccessor()
18
    {
19
        return ArrSupport::class;
20
    }
21
}
22