39 lines
1019 B
PHP
39 lines
1019 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\ComponentGroup;
|
|
|
|
use CachetHQ\Cachet\Bus\Commands\ComponentGroup\UpdateComponentGroupCommand;
|
|
use CachetHQ\Cachet\Bus\Events\ComponentGroup\ComponentGroupWasUpdatedEvent;
|
|
|
|
class UpdateComponentGroupCommandHandler
|
|
{
|
|
/**
|
|
* Handle the update component group command.
|
|
*
|
|
* @param \CachetHQ\Cachet\Bus\Commands\ComponentGroup\UpdateComponentGroupCommand $command
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\ComponentGroup
|
|
*/
|
|
public function handle(UpdateComponentGroupCommand $command)
|
|
{
|
|
$group = $command->group;
|
|
$group->update([
|
|
'name' => $command->name,
|
|
'order' => $command->order,
|
|
]);
|
|
|
|
event(new ComponentGroupWasUpdatedEvent($group));
|
|
|
|
return $group;
|
|
}
|
|
}
|