123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace Sylius\Component\Attribute\Model;
- use Sylius\Component\Translation\Model\AbstractTranslation;
- class AttributeTranslation extends AbstractTranslation implements AttributeTranslationInterface
- {
-
- protected $id;
-
- protected $presentation;
-
- public function getId()
- {
- return $this->id;
- }
-
- public function getPresentation()
- {
- return $this->presentation;
- }
-
- public function setPresentation($presentation)
- {
- $this->presentation = $presentation;
- return $this;
- }
- }
|