PartnerFeedPoolChange.php 513 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Events;
  3. use App\Models\PartnerModel;
  4. use Illuminate\Support\Facades\Config;
  5. /**
  6. * 卡片等级改变事件
  7. * Class PartnerFeedPoolChange
  8. * @package App\Events
  9. */
  10. class PartnerFeedPoolChange
  11. {
  12. public $model;
  13. public $stackGlobalConfig;
  14. /**
  15. * Create a new event instance.
  16. *
  17. * @param PartnerModel $model
  18. */
  19. public function __construct(PartnerModel $model)
  20. {
  21. $this->model = $model;
  22. $this->stackGlobalConfig = Config::all();
  23. }
  24. }