1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Sylius\Component\Translation\Model;
- interface TranslatableInterface
- {
-
- public function getTranslations();
-
- public function addTranslation(TranslationInterface $translation);
-
- public function removeTranslation(TranslationInterface $translation);
- }
|