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