UserPositionChangeEvent.php 327 B

12345678910111213
  1. <?php
  2. namespace common\events\user;
  3. use common\components\BaseEvent;
  4. use common\enums\EventNameEnum;
  5. class UserPositionChangeEvent extends BaseEvent {
  6. public $name = EventNameEnum::USER_POSITION_CHANGE;
  7. public $mall_id = 0;
  8. public $listeners = array(
  9. 'common\listeners\user\UserPositionListener',
  10. );
  11. }