Passed
Pull Request — main (#22)
by Andrey
14:27
created

HttpBuilder   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\HttpBuilder as Helper;
7
8
/**
9
 * @method static Helper parse(string $url, int $component = -1)
10
 * @method static Helper same()
11
 * @method static string compile()
12
 * @method static string|null getFragment()
13
 * @method static string|null getHost()
14
 * @method static string|null getPassword()
15
 * @method static string|null getPath()
16
 * @method static string|null getPort()
17
 * @method static string|null getQuery()
18
 * @method static string|null getScheme()
19
 * @method static string|null getUser()
20
 */
21
final class HttpBuilder extends BaseFacade
22
{
23
    protected static function getFacadeAccessor()
24
    {
25
        return Helper::class;
26
    }
27
}
28