mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 20:54:20 +01:00
Implement flash messages, refactor candidate retrieval, and enhance quiz functionality
This commit is contained in:
17
src/Enum/FlashType.php
Normal file
17
src/Enum/FlashType.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum FlashType: string
|
||||
{
|
||||
case Primary = 'primary';
|
||||
case Secondary = 'secondary';
|
||||
case Success = 'success';
|
||||
case Danger = 'danger';
|
||||
case Warning = 'warning';
|
||||
case Info = 'info';
|
||||
case Ligt = 'light';
|
||||
case Dark = 'dark';
|
||||
}
|
||||
Reference in New Issue
Block a user