Repository URL to install this package:
|
Version:
6.0.11 ▾
|
<?php
/**
* Created by IntelliJ IDEA.
* User: martino
* Date: 23/02/16
* Time: 23:47
*/
namespace DigitalAscetic\SimpleTranslatable\Entity;
use Doctrine\Common\Collections\Collection;
interface Translatable
{
public function getTranslationSource(): Translatable;
public function getTranslations(): Collection;
public function getLocale(): string;
}