Passed
Branch main (ac09e4)
by Pouya
03:02
created

Blockchain::Request()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 12
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 12
rs 10
cc 2
nc 2
nop 3
1
<?php
2
3
namespace Appino\Blockchain;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @see \Appino\Blockchain\Skeleton\SkeletonClass
9
 */
10
class Blockchain extends Facade
11
{
12
    /**
13
     * Get the registered name of the component.
14
     *
15
     * @return string
16
     */
17
    protected static function getFacadeAccessor()
18
    {
19
        return 'blockchain';
20
    }
21
}
22