Cachet/app/models/MetricPoint.php
2014-12-01 08:53:32 +00:00

12 lines
274 B
PHP

<?php
class MetricPoint extends Eloquent {
/**
* A metric point belongs to a metric unit.
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function metric() {
return $this->belongsTo('Metric', 'id', 'metric_id');
}
}