PHP Classes

File: doc/samples/Enum/CountryEnum.php

Recommend this page to a friend!
  Classes of Sergii Pryz   Transfer Object   doc/samples/Enum/CountryEnum.php   Download  
File: doc/samples/Enum/CountryEnum.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Transfer Object
Generate transfer objects using property hooks
Author: By
Last change:
Date: 15 days ago
Size: 156 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Picamator\Doc\Samples\TransferObject\Enum;

enum CountryEnum: string
{
    case
PL = 'PL';
    case
DE = 'DE';
}