<?php
namespace Cms\TenantBundle\Entity\TenantedEntities;
use Cms\CoreBundle\Model\Interfaces\Identifiable\IdentifiableInterface;
use Cms\CoreBundle\Model\Interfaces\Identifiable\IdentifiableTrait;
use Cms\TenantBundle\Entity\TenantedEntity;
use Doctrine\ORM\Mapping as ORM;
/**
* This is the "replacement" for the "old" notion of TenantedEntity.
* Most entities in our system will use this.
* This enforces that a Tenant is attributed to an entity.
* It also uses our globally unique identification process for objects as well.
*
* Class IdentifiableTenantedEntity
* @package Cms\TenantBundle\Entity\TenantedEntities
*
* @ORM\MappedSuperclass
*/
abstract class IdentifiableTenantedEntity extends TenantedEntity implements IdentifiableInterface
{
//use IdentifiableTrait;
}