Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
natchbone
/
wp-smushit
/
core
/
avif
:
class-timer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ); } }