PHP Classes

File: src/Aplicacao/Comandos/Agenda/NotificarCompromisso/Resposta.php

Recommend this page to a friend!
  Classes of Matheusz Maydana   Bames   src/Aplicacao/Comandos/Agenda/NotificarCompromisso/Resposta.php   Download  
File: src/Aplicacao/Comandos/Agenda/NotificarCompromisso/Resposta.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Bames
Application collection to study design patterns
Author: By
Last change:
Date: 27 days ago
Size: 336 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
App\Aplicacao\Comandos\Agenda\NotificarCompromisso;

enum Resposta: string
{
    case
JA_PASSOU = 'O evento já passou.';
    case
NOTIFICADO = 'Evento notificado.';
    case
AINDA_NAO_E_HORA = 'Ainda não é hora de notificar o evento.';
    case
NAO_ENCONTRADO = 'Evento não encontrado.';
}