Passed
Push — main ( e463d3...b1ff39 )
by Andrey
28:35 queued 27:19
created

Stub::getFacadeAccessor()   A

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
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Helldar\Support\Facades\Tools;
4
5
use Helldar\Support\Facades\BaseFacade;
6
use Helldar\Support\Tools\Stub as Tool;
7
8
/**
9
 * @method static string replace(string $stub_file, array $replace)
10
 * @method static string get(string $filename)
11
 */
12
final class Stub extends BaseFacade
13
{
14
    protected static function getFacadeAccessor()
15
    {
16
        return Tool::class;
17
    }
18
}
19