38 lines
871 B
PHP
38 lines
871 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\Bus\Handlers\Commands\User;
|
|
|
|
use CachetHQ\Cachet\Bus\Commands\User\WelcomeUserCommand;
|
|
use CachetHQ\Cachet\Bus\Events\User\UserWasWelcomedEvent;
|
|
|
|
/**
|
|
* This is the welcome user command handler.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class WelcomeUserCommandHandler
|
|
{
|
|
/**
|
|
* Handle the welcome user command.
|
|
*
|
|
* @param \CachetHQ\Cachet\Bus\Commands\User\WelcomeUserCommand $command
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(WelcomeUserCommand $command)
|
|
{
|
|
$command->user->update(['welcomed' => true]);
|
|
|
|
event(new UserWasWelcomedEvent($command->user));
|
|
}
|
|
}
|