Added AddTeamMemberCommand

This commit is contained in:
James Brooks
2015-08-31 09:04:35 +01:00
parent 25a3626de5
commit 37d7908606
3 changed files with 79 additions and 1 deletions
+32
View File
@@ -0,0 +1,32 @@
<?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;
}
}