Browse Source

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

Fixed ActiveRecordInterface phpDoc
tags/2.0.3
Alexander Makarov 10 years ago
parent
commit
143e42c8d9
  1. 2
      framework/db/ActiveRecordInterface.php

2
framework/db/ActiveRecordInterface.php

@ -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();

Loading…
Cancel
Save