ChargeComplatedEvent.php 388 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Author: 芸众商城 www.yunzshop.com
  4. * Date: 2017/11/20
  5. * Time: 下午3:43
  6. */
  7. namespace app\common\events\payment;
  8. use app\common\events\Event;
  9. class ChargeComplatedEvent extends Event
  10. {
  11. protected $data;
  12. public function __construct($data)
  13. {
  14. $this->data = $data;
  15. }
  16. public function getChargeData()
  17. {
  18. return $this->data;
  19. }
  20. }