Your IP : 18.116.163.144


Current Path : /proc/5208/cwd/wp-content/plugins/ninja-forms/includes/Telemetry/
Upload File :
Current File : //proc/5208/cwd/wp-content/plugins/ninja-forms/includes/Telemetry/MaxMetric.php

<?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 );
    }
}