Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | final class Role extends StringValue implements PropertyInterface, SimpleNodeInterface |
||
14 | { |
||
15 | public function getFormatter(): NodeFormatterInterface |
||
18 | } |
||
19 | |||
20 | public static function getNode(): string |
||
21 | { |
||
22 | return 'ROLE'; |
||
23 | } |
||
24 | |||
25 | public static function getParser(): NodeParserInterface |
||
26 | { |
||
27 | return new RoleParser(); |
||
28 | } |
||
29 | |||
30 | public function isAllowedMultipleTimes(): bool |
||
33 | } |
||
34 | } |
||
35 |