PHP Classes

File: src/Dominio/Entidades/Atendimento/Enums/Status.php

Recommend this page to a friend!
  Classes of Matheusz Maydana   Bames   src/Dominio/Entidades/Atendimento/Enums/Status.php   Download  
File: src/Dominio/Entidades/Atendimento/Enums/Status.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Bames
Application collection to study design patterns
Author: By
Last change:
Date: 1 month ago
Size: 246 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
App\Dominio\Entidades\Atendimento\Enums;

enum Status: string
{
    case
ABERTO = 'ABERTO';
    case
EM_ANDAMENTO = 'EM ANDAMENTO';
    case
FINALIZADO = 'FINALIZADO';
    case
CANCELADO = 'CANCELADO';
}