Passed
Push — 10.x ( c6bc71...a8e675 )
by Andrey
14:43
created

Config   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 2
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
declare(strict_types=1);
4
5
namespace Helldar\LaravelLangPublisher\Facades;
6
7
use Helldar\LaravelLangPublisher\Config\Config as Instance;
8
use Illuminate\Support\Facades\Facade;
9
10
/**
11
 * @method static array excludes()
12
 * @method static array plugins()
13
 * @method static bool hasAlignment()
14
 * @method static bool hasInline()
15
 * @method static int case()
16
 * @method static string resources()
17
 * @method static string vendor()
18
 */
19
class Config extends Facade
20
{
21
    protected static function getFacadeAccessor()
22
    {
23
        return Instance::class;
24
    }
25
}
26