From 70f902a3a4e8a78d762eb6a6c906030b333deed0 Mon Sep 17 00:00:00 2001 From: kevin olson Date: Wed, 22 Dec 2021 10:41:38 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20add=20date=20as=20type=20Date?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ModelInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ModelInterface.php b/src/ModelInterface.php index 2210556..c919ee9 100644 --- a/src/ModelInterface.php +++ b/src/ModelInterface.php @@ -28,6 +28,7 @@ class ModelInterface 'string' => 'string', 'decimal' => 'number', 'datetime' => 'Date', + 'date' => 'Date', 'bool' => 'boolean', 'boolean' => 'boolean', 'json' => '[]',