CustomerFileQuery.php 281 B

123456789101112131415161718
  1. <?php
  2. namespace yiiunit\extensions\mongodb\data\ar\file;
  3. use yii\mongodb\file\ActiveQuery;
  4. /**
  5. * CustomerFileQuery
  6. */
  7. class CustomerFileQuery extends ActiveQuery
  8. {
  9. public function activeOnly()
  10. {
  11. $this->andWhere(['status' => 2]);
  12. return $this;
  13. }
  14. }