Arr::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
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