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

Config::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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