misuzu/src/Config/CfgType.php

11 lines
227 B
PHP

<?php
namespace Misuzu\Config;
final class CfgType {
public const T_ANY = '';
public const T_STR = 'string';
public const T_INT = 'integer';
public const T_BOOL = 'boolean';
public const T_ARR = 'array';
}