From 2e5637d77a32e2610685a98aab5f2d2aa22b072c Mon Sep 17 00:00:00 2001 From: Pavel Batanov Date: Thu, 16 May 2019 11:14:20 +0300 Subject: [PATCH] Add array type to constant list --- src/spec/Type.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spec/Type.php b/src/spec/Type.php index 3c622824..cea7e11c 100644 --- a/src/spec/Type.php +++ b/src/spec/Type.php @@ -20,4 +20,5 @@ class Type const STRING = 'string'; const BOOLEAN = 'boolean'; const OBJECT = 'object'; + const ARRAY = 'array'; }