36 lines
862 B
PHP
36 lines
862 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\Handlers\Commands\Metric;
|
|
|
|
use CachetHQ\Cachet\Commands\Metric\RemoveMetricPointCommand;
|
|
use CachetHQ\Cachet\Events\Metric\MetricPointWasRemovedEvent;
|
|
use CachetHQ\Cachet\Models\Metric;
|
|
|
|
class RemoveMetricPointCommandHandler
|
|
{
|
|
/**
|
|
* Handle the remove metric point command.
|
|
*
|
|
* @param \CachetHQ\Cachet\Commands\Metric\RemoveMetricPointCommand $command
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(RemoveMetricPointCommand $command)
|
|
{
|
|
$metricPoint = $command->metricPoint;
|
|
|
|
event(new MetricPointWasRemovedEvent($metricPoint));
|
|
|
|
$metricPoint->delete();
|
|
}
|
|
}
|