Scope   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 2
c 1
b 0
f 1
dl 0
loc 9
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getIdentifier() 0 2 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