|
@@ -17,6 +17,7 @@ class QappTikTokUser implements ShouldQueue
|
|
|
{
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
+ private $ip;
|
|
|
private $device_no;
|
|
|
private $mac;
|
|
|
private $channel_id;
|
|
@@ -29,8 +30,9 @@ class QappTikTokUser implements ShouldQueue
|
|
|
*
|
|
|
* @return void
|
|
|
*/
|
|
|
- public function __construct(string $device_no, string $mac, int $channel_id, int $uid, string $register_time, bool $is_report = false)
|
|
|
+ public function __construct(string $ip, string $device_no, string $mac, int $channel_id, int $uid, string $register_time, bool $is_report = false)
|
|
|
{
|
|
|
+ $this->ip = $ip;
|
|
|
$this->device_no = $device_no;
|
|
|
$this->mac = $mac;
|
|
|
$this->channel_id = $channel_id;
|
|
@@ -48,6 +50,7 @@ class QappTikTokUser implements ShouldQueue
|
|
|
{
|
|
|
$client = new Client();
|
|
|
$params = [
|
|
|
+ 'ip' => $this->ip,
|
|
|
'device_no' => $this->device_no,
|
|
|
'mac' => $this->mac ?? '',
|
|
|
'channel_id' => $this->channel_id,
|