PHP Classes

File: tests/integration/TransferGenerator/Enum/AddressLabelEnum.php

Recommend this page to a friend!
  Classes of Sergii Pryz   Transfer Object   tests/integration/TransferGenerator/Enum/AddressLabelEnum.php   Download  
File: tests/integration/TransferGenerator/Enum/AddressLabelEnum.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: 261 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Picamator\Tests\Integration\TransferObject\TransferGenerator\Enum;

enum AddressLabelEnum: string
{
    case
FAMILY = 'Family';
    case
FRIENDS = 'Friends';
    case
BUSINESS = 'Business';
    case
OTHER = 'Other';
}