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

WAMP   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 8
c 0
b 0
f 0
ccs 0
cts 8
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
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