Example #1
0
 /**
  * Get string for VO2max estimate
  * @return string
  */
 public function fitVO2maxEstimate()
 {
     if ($this->Activity->fitVO2maxEstimate() > 0) {
         return round($this->Activity->fitVO2maxEstimate());
     }
     return '';
 }
Example #2
0
 /**
  * Get string for VO2max estimate
  * @return string
  */
 public function fitVO2maxEstimate()
 {
     if ($this->Activity->fitVO2maxEstimate() > 0) {
         return number_format($this->Activity->fitVO2maxEstimate(), 2);
     }
     return '';
 }