StarVideo.php 340 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\queue\redis;
  3. use Webman\RedisQueue\Consumer;
  4. /**
  5. * 同步星川任务达人投稿视频
  6. */
  7. class StarVideo implements Consumer
  8. {
  9. public string $queue = "star-video";
  10. public string $connection = "default";
  11. public function consume($data): bool
  12. {
  13. return true;
  14. }
  15. }