src/Entity/User/Participant.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * Unauthorized copying of this file, via any medium is strictly prohibited
  4.  * Proprietary and confidential.
  5.  *
  6.  * @author Bilel AZRI          <azri.bilel@gmail.com>
  7.  * @author Assma BEN SASSI     <bensassiasma.bws@gmail.com>
  8.  *
  9.  * Bicking man (c) 2019-present.
  10.  */
  11. declare(strict_types=1);
  12. namespace App\Entity\User;
  13. use App\Repository\User\ParticipantRepository;
  14. use Doctrine\ORM\Mapping as ORM;
  15. /**
  16.  * @ORM\Entity(repositoryClass=ParticipantRepository::class)
  17.  * @ORM\HasLifecycleCallbacks
  18.  */
  19. class Participant extends User
  20. {
  21.     public const ROLE_DEFAULT 'ROLE_PARTICIPANT';
  22. }