Passed
Push — main ( a3c66a...a7b6ef )
by Andrey
12:42 queued 11:13
created

BaseFacade::resolveFacadeInstance()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 4

Importance

Changes 2
Bugs 1 Features 0
Metric Value
cc 4
eloc 4
c 2
b 1
f 0
nc 6
nop 1
dl 0
loc 9
ccs 5
cts 5
cp 1
crap 4
rs 10
1
<?php
2
3
namespace Helldar\Support\Facades;
4
5
use Helldar\Support\Concerns\Deprecation;
6
7
/** @deprecated since 4.0: Use \Helldar\Support\Facades\Facade instead */
8
abstract class BaseFacade extends Facade
9
{
10
    use Deprecation;
11
12
    public static function __callStatic($method, $args)
13
    {
14
        static::deprecatedClass(Facade::class, self::class);
15
16
        return parent::__callStatic($method, $args);
17
    }
18
}
19