| Total Complexity | 4 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 10 | final class Note extends SingleStringValue implements PropertyInterface, SimpleNodeInterface  | 
            ||
| 11 | { | 
            ||
| 12 | public function getFormatter(): NodeFormatterInterface  | 
            ||
| 13 |     { | 
            ||
| 14 | return new NoteFormatter($this);  | 
            ||
| 15 | }  | 
            ||
| 16 | |||
| 17 | public static function getNode(): string  | 
            ||
| 20 | }  | 
            ||
| 21 | |||
| 22 | public static function getParser(): NodeParserInterface  | 
            ||
| 23 |     { | 
            ||
| 24 | return new NoteParser();  | 
            ||
| 25 | }  | 
            ||
| 26 | |||
| 27 | public function isAllowedMultipleTimes(): bool  | 
            ||
| 30 | }  | 
            ||
| 31 | }  | 
            ||
| 32 |