src/Cms/TenantBundle/Entity/TenantedEntities/IdentifiableTenantedEntity.php line 21

Open in your IDE?
  1. <?php
  2. namespace Cms\TenantBundle\Entity\TenantedEntities;
  3. use Cms\CoreBundle\Model\Interfaces\Identifiable\IdentifiableInterface;
  4. use Cms\CoreBundle\Model\Interfaces\Identifiable\IdentifiableTrait;
  5. use Cms\TenantBundle\Entity\TenantedEntity;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * This is the "replacement" for the "old" notion of TenantedEntity.
  9.  * Most entities in our system will use this.
  10.  * This enforces that a Tenant is attributed to an entity.
  11.  * It also uses our globally unique identification process for objects as well.
  12.  *
  13.  * Class IdentifiableTenantedEntity
  14.  * @package Cms\TenantBundle\Entity\TenantedEntities
  15.  *
  16.  * @ORM\MappedSuperclass
  17.  */
  18. abstract class IdentifiableTenantedEntity extends TenantedEntity implements IdentifiableInterface
  19. {
  20.     //use IdentifiableTrait;
  21. }