| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class Logo extends ImageValue implements PropertyInterface, NodeInterface |
||
| 12 | { |
||
| 13 | public function getFormatter(): NodeFormatterInterface |
||
| 14 | { |
||
| 15 | return new LogoFormatter($this); |
||
| 16 | } |
||
| 17 | |||
| 18 | public static function getNode(): string |
||
| 19 | { |
||
| 20 | return 'LOGO'; |
||
| 21 | } |
||
| 22 | |||
| 23 | public static function getParser(): NodeParserInterface |
||
| 26 | } |
||
| 27 | |||
| 28 | public function isAllowedMultipleTimes(): bool |
||
| 31 | } |
||
| 32 | } |
||
| 33 |