From 08e54c522c554ca5a5dbf48072d9dbb919e69561 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Tue, 27 Jan 2015 01:44:35 +0300 Subject: [PATCH] Fixed ActiveRecordInterface phpDoc --- framework/db/ActiveRecordInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/ActiveRecordInterface.php b/framework/db/ActiveRecordInterface.php index 6b57815770..3036d6a474 100644 --- a/framework/db/ActiveRecordInterface.php +++ b/framework/db/ActiveRecordInterface.php @@ -146,7 +146,7 @@ interface ActiveRecordInterface * // SELECT FROM customer WHERE age>30 * $customers = Customer::find()->where('age>30')->all(); * - * @return static|ActiveQueryInterface the newly created [[ActiveQueryInterface|ActiveQuery]] instance. + * @return ActiveQueryInterface the newly created [[ActiveQueryInterface|ActiveQuery]] instance. */ public static function find();