PushNotificationTargetEnum.php 139 B

123456789
  1. <?php
  2. namespace App\Enums;
  3. enum PushNotificationTargetEnum: string
  4. {
  5. case PRESTADOR = 'prestador';
  6. case CLIENTE = 'cliente';
  7. }