From 513b45df0a31b0247c11e58aa2c5ee8e30e3ab94 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Thu, 12 Sep 2024 09:46:21 +0700 Subject: [PATCH] Fix psalm --- src/ActiveRecordInterface.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ActiveRecordInterface.php b/src/ActiveRecordInterface.php index 5bf99e372..68ececc9f 100644 --- a/src/ActiveRecordInterface.php +++ b/src/ActiveRecordInterface.php @@ -11,7 +11,6 @@ use Yiisoft\Db\Exception\InvalidConfigException; use Yiisoft\Db\Exception\NotSupportedException; use Yiisoft\Db\Exception\StaleObjectException; -use Yiisoft\Db\Constant\ColumnType; interface ActiveRecordInterface { @@ -26,8 +25,6 @@ public function properties(): array; /** * Returns the abstract type of the property. - * - * @psalm-return ColumnType::* */ public function columnType(string $propertyName): string;