MaxMetric.php 233 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <?php class NF_Telemetry_MaxMetric extends NF_Telemetry_Metric { public function update( $value ) { $old_max = $this->get(); $new_max = max( $old_max, $value ); return $this->save( $new_max ); } }