Scalr_Scaling_FarmRoleMetric::getMetric PHP Method

getMetric() public method

Gets related ScalingMetric entity
public getMetric ( ) : ScalingMetric
return Scalr\Model\Entity\ScalingMetric
    function getMetric()
    {
        if (!$this->metric) {
            $this->metric = Entity\ScalingMetric::findPk($this->metricId);
        }
        return $this->metric;
    }