18 lines
242 B
PHP
18 lines
242 B
PHP
<?php
|
|
|
|
namespace Vanguard\Events\User;
|
|
|
|
use Vanguard\User;
|
|
|
|
class Created
|
|
{
|
|
public function __construct(protected User $createdUser)
|
|
{
|
|
}
|
|
|
|
public function getCreatedUser(): User
|
|
{
|
|
return $this->createdUser;
|
|
}
|
|
}
|