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

Scope::getIdentifier()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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