From 38fffb35c7ab4bf49466efc92047aa79414990df Mon Sep 17 00:00:00 2001 From: Tigrov Date: Fri, 8 Nov 2024 21:10:40 +0700 Subject: [PATCH] Fix test --- tests/Stubs/ActiveRecord/Type.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Stubs/ActiveRecord/Type.php b/tests/Stubs/ActiveRecord/Type.php index bcf8b44c8..4b9454cf1 100644 --- a/tests/Stubs/ActiveRecord/Type.php +++ b/tests/Stubs/ActiveRecord/Type.php @@ -23,7 +23,7 @@ class Type extends ActiveRecord public float|null $float_col2 = 1.23; public mixed $blob_col; public float|null $numeric_col = 33.22; - public string $time = '2002-01-01 00:00:00'; + public string|Expression $time = '2002-01-01 00:00:00'; public bool|int $bool_col; public bool|int|string|null $bool_col2 = true; public string|Expression $ts_default;