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

Eticket::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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