PHP Classes

File: src/Dominio/Entidades/Agenda/Enums/AgendaPlataforma.php

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

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
App\Dominio\Entidades\Agenda\Enums;

enum AgendaPlataforma: string
{
    case
NENHUMA = 'Nenhuma';
    case
GOOGLE = 'Google';
    case
MICROSOFT = 'Microsoft';
    case
APPLE = 'Apple';
}