Fixed ActiveRecordInterface phpDoc

This commit is contained in:
Alexander Kochetov
2015-01-27 01:44:35 +03:00
parent 3d510fb016
commit 08e54c522c

View File

@ -146,7 +146,7 @@ interface ActiveRecordInterface
* // SELECT FROM customer WHERE age>30 * // SELECT FROM customer WHERE age>30
* $customers = Customer::find()->where('age>30')->all(); * $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(); public static function find();