<?php
/*
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential.
*
* @author Bilel AZRI <azri.bilel@gmail.com>
* @author Assma BEN SASSI <bensassiasma.bws@gmail.com>
*
* Bicking man (c) 2019-present.
*/
declare(strict_types=1);
namespace App\Entity\User;
use App\Repository\User\ParticipantRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ParticipantRepository::class)
* @ORM\HasLifecycleCallbacks
*/
class Participant extends User
{
public const ROLE_DEFAULT = 'ROLE_PARTICIPANT';
}