Completed
Push — master ( 9882f6...0bdd02 )
by Andrew
9s
created

ScopeEntity::jsonSerialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * @author      Alex Bilbie <[email protected]>
4
 * @copyright   Copyright (c) Alex Bilbie
5
 * @license     http://mit-license.org/
6
 *
7
 * @link        https://github.com/thephpleague/oauth2-server
8
 */
9
10
namespace OAuth2ServerExamples\Entities;
11
12
use League\OAuth2\Server\Entities\ScopeEntityInterface;
13
use League\OAuth2\Server\Entities\Traits\EntityTrait;
14
use League\OAuth2\Server\Entities\Traits\ScopeTrait;
15
16
class ScopeEntity implements ScopeEntityInterface
17
{
18
    use EntityTrait, ScopeTrait;
19
}
20