PocketMine-MP 5.18.2 git-00e39821f06a4b6d728d35053c2621dbb19369ff
BuiltInTypes.php
1<?php declare(strict_types = 1);
2
3namespace DaveRandom\CallbackValidator;
4
5final class BuiltInTypes
6{
10 private function __construct() { }
11
12 const STRING = 'string';
13 const INT = 'int';
14 const FLOAT = 'float';
15 const BOOL = 'bool';
16 const ARRAY = 'array';
17 const VOID = 'void';
18 const CALLABLE = 'callable';
19 const ITERABLE = 'iterable';
20}