committed by
Graham Campbell
parent
65f0ac62fe
commit
22158c3250
@@ -20,17 +20,17 @@ class MetricPointWasAddedEvent implements MetricEventInterface
|
||||
*
|
||||
* @var \CachetHQ\Cachet\Models\MetricPoint
|
||||
*/
|
||||
public $metric;
|
||||
public $metricPoint;
|
||||
|
||||
/**
|
||||
* Create a new metric point was added event instance.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\MetricPoint $metric
|
||||
* @param \CachetHQ\Cachet\Models\MetricPoint $metricPoint
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(MetricPoint $metric)
|
||||
public function __construct(MetricPoint $metricPoint)
|
||||
{
|
||||
$this->metric = $metric;
|
||||
$this->metricPoint = $metricPoint;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,17 +20,17 @@ class MetricPointWasUpdatedEvent implements MetricEventInterface
|
||||
*
|
||||
* @var \CachetHQ\Cachet\Models\MetricPoint
|
||||
*/
|
||||
public $point;
|
||||
public $metricPoint;
|
||||
|
||||
/**
|
||||
* Create a new metric point was updated event instance.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\MetricPoint $point
|
||||
* @param \CachetHQ\Cachet\Models\MetricPoint $metricPoint
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(MetricPoint $point)
|
||||
public function __construct(MetricPoint $metricPoint)
|
||||
{
|
||||
$this->point = $point;
|
||||
$this->metricPoint = $metricPoint;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user