src/Cms/Modules/QuestionBundle/Entity/Entry/EntryProxy.php line 33

Open in your IDE?
  1. <?php
  2. namespace Cms\Modules\QuestionBundle\Entity\Entry;
  3. use Cms\ModuleBundle\Entity\Proxy;
  4. use Cms\ModuleBundle\Model\Interfaces\Shareable\ShareableInterface;
  5. use Cms\ModuleBundle\Model\Interfaces\Shareable\ShareableTrait;
  6. use Cms\Modules\QuestionBundle\Model\Entry\EntryData;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Cms\ImportBundle\Model\Interfaces\Importable\ImportableInterface;
  10. use Cms\ImportBundle\Model\Interfaces\Importable\ImportableTrait;
  11. /**
  12.  * Class EntryProxy
  13.  * @package Cms\Modules\EntryBundle\Entity\Entry
  14.  *
  15.  * @property EntryData $data
  16.  * @property ArrayCollection|EntryHistory[] $histories
  17.  * @property EntryHistory $history
  18.  * @property ArrayCollection|EntryDraft[] $drafts
  19.  *
  20.  * @method EntryData getData()
  21.  * @method ArrayCollection|EntryHistory[] getHistories()
  22.  * @method EntryHistory getHistory()
  23.  * @method EntryDraft getDraft()
  24.  * @method ArrayCollection|EntryDraft[] getDrafts()
  25.  * @method EntryProxy setData(EntryData $value)
  26.  * @method EntryProxy setHistory(EntryHistory $value)
  27.  *
  28.  * @ORM\Entity
  29.  */
  30. class EntryProxy extends Proxy implements ShareableInterfaceImportableInterface
  31. {
  32.     const TYPE 'Entry';
  33.     const LOCKABLE_TYPE 'question';
  34.     use EntryDataTraitShareableTraitImportableTrait;
  35. }