mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
29 lines
527 B
PHP
29 lines
527 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class UserLoggedIn
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public User $user;
|
|
|
|
public string $ip;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(User $user, string $ip = '')
|
|
{
|
|
$this->user = $user;
|
|
$this->ip = $ip;
|
|
}
|
|
}
|