Notifiable.php 307 B

1234567891011121314151617
  1. <?php
  2. namespace addons\shopro\library\notify;
  3. use addons\shopro\exception\Exception;
  4. use think\queue\ShouldQueue;
  5. /**
  6. * 消息通知 trait
  7. */
  8. trait Notifiable
  9. {
  10. public function notify ($notification) {
  11. return \addons\shopro\library\notify\Notify::send([$this], $notification);
  12. }
  13. }