src/App/Entity/Content/Exhibits/Gallery/GalleryDraft.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Content\Exhibits\Gallery;
  3. use App\Entity\Content\AbstractDraft;
  4. use App\Entity\Content\Exhibits\GalleryInterface;
  5. use App\Entity\Content\Exhibits\GalleryTrait;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Serializer\Annotation\Groups;
  8. /**
  9.  * @ORM\Entity(
  10.  *     repositoryClass = "App\Doctrine\Repository\Content\Exhibits\Gallery\GalleryDraftRepository",
  11.  * )
  12.  */
  13. class GalleryDraft extends AbstractDraft implements GalleryInterface
  14. {
  15.     const DISCR GalleryObject::DISCR;
  16.     const CLASSES__OBJECT GalleryObject::class;
  17.     const CLASSES__REVISION GalleryRevision::class;
  18.     use GalleryTrait;
  19. }