Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
<?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;
}