PHP Classes

File: src/Enums/ATONType.php

Recommend this page to a friend!
  Packages of Stefano D'Agostino   ATON Format PHP   src/Enums/ATONType.php   Download  
File: src/Enums/ATONType.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: ATON Format PHP
Encode and decode values using the ATON format
Author: By
Last change:
Date: 3 months ago
Size: 281 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Aton\Enums;

/**
 * ATON data types
 */
enum ATONType: string
{
    case
INT = 'int';
    case
FLOAT = 'float';
    case
STR = 'str';
    case
BOOL = 'bool';
    case ARRAY =
'array';
    case
OBJECT = 'object';
    case
NULL = 'null';
}