Commit 143e42c8 by Alexander Makarov

Merge pull request #7034 from creocoder/active-record-interface-phpdoc-fix

Fixed ActiveRecordInterface phpDoc
parents 3d510fb0 08e54c52
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment