src/DBAL/EventEnumType.php line 6

Open in your IDE?
  1. <?php
  2. namespace App\DBAL;
  3. use App\Entity\Event;
  4. class EventEnumType extends EnumType
  5. {
  6.     protected string $name 'enumeventstate';
  7.     protected array $values = [
  8.         Event::STATE_ACTIVE,
  9.         Event::STATE_CANCEL,
  10.         Event::STATE_ARCHIVED,
  11.     ];
  12. }