mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 02:27:25 +08:00
16 lines
193 B
PHP
Executable File
16 lines
193 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
|
|
class UserLoggedIn extends Event
|
|
{
|
|
public $user;
|
|
|
|
public function __construct(User $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
}
|