mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
27 lines
427 B
PHP
27 lines
427 B
PHP
<?php
|
|
|
|
namespace Modules\MultiVendor\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SellerShippingConfigEvent
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $user_id;
|
|
public function __construct($user_id)
|
|
{
|
|
$this->user_id = $user_id;
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should be broadcast on.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function broadcastOn()
|
|
{
|
|
return [];
|
|
}
|
|
}
|