37 lines
698 B
PHP
37 lines
698 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\Commands\Metric;
|
|
|
|
use CachetHQ\Cachet\Models\Metric;
|
|
|
|
final class RemoveMetricCommand
|
|
{
|
|
/**
|
|
* The metric to remove.
|
|
*
|
|
* @var \CachetHQ\Cachet\Models\Metric
|
|
*/
|
|
public $metric;
|
|
|
|
/**
|
|
* Create a new remove metric command instance.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Metric $metric
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Metric $metric)
|
|
{
|
|
$this->metric = $metric;
|
|
}
|
|
}
|