Test Failed
Push — master ( a6b51e...5fffdb )
by Gabriel
08:05
created

Scope   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getIdentifier() 0 4 1
1
<?php
2
3
namespace ByTIC\Hello\Models\Scopes;
4
5
use League\OAuth2\Server\Entities\ScopeEntityInterface;
6
use League\OAuth2\Server\Entities\Traits\ScopeTrait;
7
8
/**
9
 * Class Token
10
 * @package ByTIC\Auth\Models\AccessTokens
11
 */
12
class Scope extends \Nip\Records\Record implements ScopeEntityInterface
13
{
14
    use ScopeTrait;
15
16
    /**
17
     * @return string
18
     */
19
    public function getIdentifier()
20
    {
21
        // TODO: Implement getIdentifier() method.
22
    }
23
}
24