1 | <?php |
||
8 | class ScopeEntity implements ScopeEntityInterface |
||
9 | { |
||
10 | use EntityTrait; |
||
11 | |||
12 | /** |
||
13 | * ScopeEntity constructor. |
||
14 | * |
||
15 | * @param string $name The name of the scope. |
||
16 | */ |
||
17 | public function __construct(string $name) |
||
21 | |||
22 | /** |
||
23 | * Get the scope in a format suitable for json. |
||
24 | * |
||
25 | * @return mixed |
||
26 | */ |
||
27 | public function jsonSerialize() |
||
31 | } |
||
32 |