mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Fixed scope issue in tests
This commit is contained in:
@ -23,9 +23,10 @@ class Customer extends ActiveRecord
|
||||
|
||||
public static function scopes()
|
||||
{
|
||||
$status = self::STATUS_ACTIVE;
|
||||
return array(
|
||||
'active' => function($q) {
|
||||
return $q->andWhere('@.`status` = ' . self::STATUS_ACTIVE);
|
||||
'active' => function($q) use ($status){
|
||||
return $q->andWhere('@.`status` = ' . $status);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user