phpDoc updated

This commit is contained in:
githubjeka
2016-01-12 10:10:43 +03:00
parent 02bebc6a8b
commit 2b6ceb1eb7
3 changed files with 5 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ interface ActiveQueryInterface extends QueryInterface
* Customer::find()->with('orders.address')->all();
* // find customers together with their country and orders of status 1
* Customer::find()->with([
* 'orders' => function ($query) {
* 'orders' => function (\yii\db\ActiveQueryInterface $query) {
* $query->andWhere('status = 1');
* },
* 'country',