13 lines
172 B
PHP
Executable File
13 lines
172 B
PHP
Executable File
<?php
|
|
|
|
namespace Common\Auth\Events;
|
|
|
|
use App\Models\User;
|
|
|
|
class SocialLogin
|
|
{
|
|
public function __construct(public User $user, public string $socialName)
|
|
{
|
|
}
|
|
}
|