SendMsg.php 697 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * ----------------------------------------------------------------------------
  4. * 行到水穷处,坐看云起时
  5. * 开发软件,找贵阳云起信息科技,官网地址:https://www.56q7.com/
  6. * ----------------------------------------------------------------------------
  7. * Author: 老成
  8. * email:85556713@qq.com
  9. */
  10. declare(strict_types=1);
  11. namespace app\admin\command\queueEvent;
  12. use app\common\model\Msg;
  13. class SendMsg implements EventInterFace
  14. {
  15. public static function handle($output)
  16. {
  17. $list=Msg::where(['status'=>0])->select();
  18. foreach ($list as $msg){
  19. $handle=$msg->getHanlde();
  20. $handle->send($msg);
  21. }
  22. }
  23. }