SearchEvent.php 291 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2018-01-22 17:17
  7. */
  8. namespace backend\components\search;
  9. class SearchEvent extends \yii\base\Event
  10. {
  11. const BEFORE_SEARCH = 1;
  12. /** @var $query \yii\db\ActiveQuery */
  13. public $query;
  14. }