src/Products/NotificationsBundle/Entity/Notifications/Message.php line 21

Open in your IDE?
  1. <?php
  2. namespace Products\NotificationsBundle\Entity\Notifications;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\Common\Collections\Criteria;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Products\NotificationsBundle\Entity\AbstractNotification;
  8. use Products\NotificationsBundle\Entity\Job;
  9. use Reinder83\BinaryFlags\Bits;
  10. /**
  11.  * Class Message
  12.  * @package Products\NotificationsBundle\Entity\Notifications
  13.  *
  14.  * @ORM\Entity(
  15.  *     repositoryClass = "Products\NotificationsBundle\Doctrine\Repository\Notifications\MessageRepository",
  16.  * )
  17.  */
  18. class Message extends AbstractNotification
  19. {
  20.     public const DISCR 'message';
  21. }