Files
cachet-docker/app/Events/User/UserWasAddedEvent.php
2015-08-31 20:16:38 +01:00

33 lines
588 B
PHP

<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CachetHQ\Cachet\Events\User;
use CachetHQ\Cachet\Models\User;
class UserWasAddedEvent
{
/**
* The user that has been added.
*
* @var \CachetHQ\Cachet\Models\User
*/
public $user;
/**
* Create a new user was added event instance.
*/
public function __construct(User $user)
{
$this->user = $user;
}
}