CountMetric.php 244 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <?php class NF_Telemetry_CountMetric extends NF_Telemetry_Metric { public function increment( $increment = 1 ) { $count = $this->get(); $new_count = $count + $increment; return $this->save( $new_count ); } }