1 | <?php |
||
19 | class ArticleExtraTextField extends ArticleExtraField implements ArticleExtraTextFieldInterface |
||
20 | { |
||
21 | /** @var string */ |
||
22 | protected $value; |
||
23 | |||
24 | public static function newFromValue(string $fieldName, string $value): ArticleExtraTextFieldInterface |
||
33 | |||
34 | public function setValue(string $value): void |
||
38 | |||
39 | public function getValue(): ?string |
||
43 | |||
44 | public function toApiFormat(): ?string |
||
48 | } |
||
49 |