PHP Classes

File: tests/Full/EventSauceDto/UserTypeEnum.php

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP Benchmark DTO Transform   tests/Full/EventSauceDto/UserTypeEnum.php   Download  
File: tests/Full/EventSauceDto/UserTypeEnum.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Benchmark DTO Transform
Check the performance of several PHP DTO packages
Author: By
Last change:
Date: 5 months ago
Size: 155 bytes
 

Contents

Class file image Download
<?php

namespace Tests\Full\EventSauceDto;

/**
 * Class ColorEnum
 */
enum UserTypeEnum: string
{
    case
Admin = 'admin';
    case
Client = 'client';
}