Completed
Push — main ( a102d3...f9c7f4 )
by Emmanuel
03:55
created

Eticket   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
/**
4
 * Author: Emmanuel Paul Mnzava
5
 * Twitter: @epmnzava
6
 * Github:https://github.com/dbrax/eticket
7
 * Email: [email protected]
8
 * 
9
 */
10
namespace Epmnzava\Eticket\Facades;
11
12
use Illuminate\Support\Facades\Facade;
13
14
/**
15
 * @see \Epmnzava\Eticket\Skeleton\SkeletonClass
16
 */
17
class Eticket extends Facade
18
{
19
    /**
20
     * Get the registered name of the component.
21
     *
22
     * @return string
23
     */
24
    protected static function getFacadeAccessor()
25
    {
26
        return 'eticket';
27
    }
28
}
29