Qwatch::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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