File Manager

Current Path : /webspace/www.beetasty.be/html/wp-content/plugins/wp-smushit/core/
Upload File :
Current File : //webspace/www.beetasty.be/html/wp-content/plugins/wp-smushit/core/class-timer.php

<?php

namespace Smush\Core;

class Timer {
	/**
	 * @var float
	 */
	private $time_start;

	public function start() {
		$this->time_start = microtime( true );
	}

	public function end() {
		$time_end = microtime( true );
		return round( $time_end - $this->time_start, 2 );
	}
}

File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com