| 1 | <?php |
||
| 15 | class AbstractCustomOptionTranslation extends AbstractTranslation implements TranslationInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string $label |
||
| 19 | */ |
||
| 20 | protected $label; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $label |
||
| 24 | * |
||
| 25 | * @return AbstractCustomOptionTranslation |
||
| 26 | */ |
||
| 27 | public function setLabel($label) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return AbstractCustomOptionTranslation |
||
| 36 | */ |
||
| 37 | public function getLabel() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public function __toString() |
||
| 49 | } |
||
| 50 |