*/ class AttributeTranslation extends AbstractTranslation implements AttributeTranslationInterface { /** * Attribute id. * * @var mixed */ protected $id; /** * Presentation. * Displayed to user. * * @var string */ protected $presentation; /** * {@inheritdoc} */ public function getId() { return $this->id; } /** * {@inheritdoc} */ public function getPresentation() { return $this->presentation; } /** * {@inheritdoc} */ public function setPresentation($presentation) { $this->presentation = $presentation; return $this; } }