FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ninja-forms
/
includes
/
Telemetry
Edit File: CountMetric.php
<?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 ); } }
Save
Back