src/Platform/SecurityBundle/Entity/Access/Role/NotificationRole.php line 14

Open in your IDE?
  1. <?php
  2. namespace Platform\SecurityBundle\Entity\Access\Role;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Platform\SecurityBundle\Entity\Access\Role;
  5. /**
  6.  *
  7.  * @ORM\Entity(
  8.  *  repositoryClass = "Platform\SecurityBundle\Doctrine\Access\Role\NotificationRoleRepository"
  9.  * )
  10.  */
  11. class NotificationRole extends Role
  12. {
  13.     public const DISCR 'notification';
  14. }