27 lines
374 B
PHP
27 lines
374 B
PHP
<?php
|
|
|
|
namespace Vanguard\Events\User;
|
|
|
|
use Vanguard\User;
|
|
|
|
class UpdatedByAdmin
|
|
{
|
|
/**
|
|
* @var User
|
|
*/
|
|
protected $updatedUser;
|
|
|
|
public function __construct(User $updatedUser)
|
|
{
|
|
$this->updatedUser = $updatedUser;
|
|
}
|
|
|
|
/**
|
|
* @return User
|
|
*/
|
|
public function getUpdatedUser()
|
|
{
|
|
return $this->updatedUser;
|
|
}
|
|
}
|