Passed
Pull Request — main (#22)
by Andrey
13:21
created

OS   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Helldar\Support\Facades\Helpers;
4
5
use Helldar\Support\Facades\BaseFacade;
6
use Helldar\Support\Helpers\OS as Helper;
7
8
/**
9
 * @method static bool isBSD()
10
 * @method static bool isDarwin()
11
 * @method static bool isLinux()
12
 * @method static bool isSolaris()
13
 * @method static bool isUnix()
14
 * @method static bool isUnknown()
15
 * @method static bool isWindows()
16
 * @method static string family(bool $lower = true)
17
 */
18
final class OS extends BaseFacade
19
{
20
    protected static function getFacadeAccessor()
21
    {
22
        return Helper::class;
23
    }
24
}
25