Commit 6cfbd8d5 by Alexander Kochetov

Fixed ActiveRecordInterface phpDoc

parent 143e42c8
...@@ -94,9 +94,9 @@ interface ActiveRecordInterface ...@@ -94,9 +94,9 @@ interface ActiveRecordInterface
public static function isPrimaryKey($keys); public static function isPrimaryKey($keys);
/** /**
* Creates an [[ActiveQueryInterface|ActiveQuery]] instance for query purpose. * Creates an [[ActiveQueryInterface]] instance for query purpose.
* *
* The returned [[ActiveQueryInterface|ActiveQuery]] instance can be further customized by calling * The returned [[ActiveQueryInterface]] instance can be further customized by calling
* methods defined in [[ActiveQueryInterface]] before `one()` or `all()` is called to return * methods defined in [[ActiveQueryInterface]] before `one()` or `all()` is called to return
* populated ActiveRecord instances. For example, * populated ActiveRecord instances. For example,
* *
...@@ -146,7 +146,7 @@ interface ActiveRecordInterface ...@@ -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 ActiveQueryInterface the newly created [[ActiveQueryInterface|ActiveQuery]] instance. * @return ActiveQueryInterface the newly created [[ActiveQueryInterface]] instance.
*/ */
public static function find(); 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