mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 00:01:21 +00:00
Update phpstan level to 6
This commit is contained in:
@@ -10,17 +10,14 @@ class UserLoggedIn
|
||||
{
|
||||
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||||
|
||||
/**
|
||||
* @var \App\Models\User
|
||||
*/
|
||||
public $user;
|
||||
public \App\Models\User $user;
|
||||
|
||||
public $ip;
|
||||
public string $ip;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*/
|
||||
public function __construct($user, $ip = '')
|
||||
public function __construct(\App\Models\User $user, string $ip = '')
|
||||
{
|
||||
$this->user = $user;
|
||||
$this->ip = $ip;
|
||||
|
||||
Reference in New Issue
Block a user