Passed
Push — master ( c70df2...3b77f2 )
by Caen
03:41 queued 11s
created

Hyde::pageLink()   A

Complexity

Conditions 5
Paths 5

Size

Total Lines 16
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 8
nc 5
nop 1
dl 0
loc 16
rs 9.6111
c 0
b 0
f 0
1
<?php
2
3
namespace Hyde\Framework;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * General facade for Hyde services.
9
 *
10
 * @see \Hyde\Framework\HydeKernel
11
 *
12
 * @author  Caen De Silva <[email protected]>
13
 * @copyright 2022 Caen De Silva
14
 * @license MIT License
15
 *
16
 * @link https://hydephp.com/
17
 */
18
class Hyde extends Facade
19
{
20
    protected static function getFacadeAccessor(): string
21
    {
22
        return HydeKernel::class;
23
    }
24
25
    public static function version()
26
    {
27
        return HydeKernel::version();
28
    }
29
}
30