Completed
Push — master ( b5cc14...d04358 )
by Sergii
23:17 queued 02:11
created

WAMP::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?
0 ignored issues
show
Security Best Practice introduced by
It is not recommended to use PHP's short opening tag <?, better use <?php, or <?= in case of outputting.

Short opening tags are disabled in PHP?s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.

As a precaution to avoid these problems better use the long opening tag <?php.

Loading history...
2
3
namespace sonrac\WAMP\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * Class WAMP
9
 * WAMP facade
10
 *
11
 * @package sonrac\WAMP\Facades
12
 */
13
class WAMP extends Facade
14
{
15
    /**
16
     * {@inheritdoc}
17
     */
18
    protected static function getFacadeAccessor()
19
    {
20
        return 'sonrac.wamp';
21
    }
22
}
23