PHP Classes

File: src/TransferGenerator/Generator/Enum/DockBlockTemplateEnum.php

Recommend this page to a friend!
  Classes of Sergii Pryz   Transfer Object   src/TransferGenerator/Generator/Enum/DockBlockTemplateEnum.php   Download  
File: src/TransferGenerator/Generator/Enum/DockBlockTemplateEnum.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: 326 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Picamator\TransferObject\TransferGenerator\Generator\Enum;

enum DockBlockTemplateEnum: string
{
    case
COLLECTION = '/** @var \ArrayObject<int,%s> */';
    case ARRAY =
'/** @var array<int|string,mixed> */';
    case
ARRAY_OBJECT = '/** @var \ArrayObject<string|int,mixed> */';
}