*/ final class UserAcceptedInviteEvent implements ActionInterface, UserEventInterface { /** * The user that accepted the invite. * * @var \CachetHQ\Cachet\Models\User */ public $user; /** * The invite that the user accepted. * * @var \CachetHQ\Cachet\Models\Invite */ public $invite; /** * Create a new user accepted invite event class. * * @param \CachetHQ\Cachet\Models\User $user * @param \CachetHQ\Cachet\Models\Invite $invite * * @return void */ public function __construct(User $user, Invite $invite) { $this->user = $user; $this->invite = $invite; } /** * Get the event description. * * @return string */ public function __toString() { return 'User accepted invite.'; } /** * Get the event action. * * @return array */ public function getAction() { return [ 'user' => $this->user, 'description' => (string) $this, ]; } }