PocketMine-MP 5.39.3 git-400eb2dddf91a9c112aa09f3b498ffc8c85e98ed
Loading...
Searching...
No Matches
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 const OBJECT = 'object';
21}