Merge pull request #8359 from hagatorn/patch-1

typo (plural) [skip ci]
This commit is contained in:
Alexander Makarov
2015-05-11 17:51:45 +03:00

View File

@@ -202,7 +202,7 @@ $customer = Customer::findOne([
// returns all inactive customers // returns all inactive customers
// SELECT * FROM `customer` WHERE `status` = 0 // SELECT * FROM `customer` WHERE `status` = 0
$customer = Customer::findAll([ $customers = Customer::findAll([
'status' => Customer::STATUS_INACTIVE, 'status' => Customer::STATUS_INACTIVE,
]); ]);
``` ```