Update phpstan level to 6

This commit is contained in:
DariusIII
2026-02-11 14:02:26 +01:00
parent eed6250518
commit f4c444c9b0
291 changed files with 3684 additions and 1089 deletions
+3 -6
View File
@@ -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;