13 lines
203 B
PHP
13 lines
203 B
PHP
<?php
|
|
|
|
namespace Modules\Core\Auth\Events;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
|
|
class UserCreated
|
|
{
|
|
public function __construct(
|
|
public readonly Authenticatable $user,
|
|
) {}
|
|
}
|