From 30376350a6f9ed4511c298456a29b6ce46d25dd9 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 7 Aug 2024 11:31:37 +0900 Subject: [PATCH] docs: update @var type --- system/Entity/Entity.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/Entity/Entity.php b/system/Entity/Entity.php index 5de8a42187a4..464992af6251 100644 --- a/system/Entity/Entity.php +++ b/system/Entity/Entity.php @@ -106,7 +106,7 @@ class Entity implements JsonSerializable /** * Holds the current values of all class vars. * - * @var array + * @var array */ protected $attributes = []; @@ -115,7 +115,7 @@ class Entity implements JsonSerializable * what's actually been changed and not accidentally write * nulls where we shouldn't. * - * @var array + * @var array */ protected $original = [];