Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Scope implements ScopeEntityInterface |
||
10 | { |
||
11 | protected string $identifier; |
||
12 | |||
13 | /** |
||
14 | * Scope constructor. |
||
15 | * |
||
16 | * @param string $identifier |
||
17 | */ |
||
18 | public function __construct(string $identifier) |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Get the client's identifier. |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getIdentifier() |
||
31 | } |
||
32 | |||
33 | public function jsonSerialize() |
||
38 |