Files
piratepoet/lib/Export/Export.php
2015-11-13 12:25:30 -05:00

16 lines
290 B
PHP

<?php
namespace MailPoet\Export;
class Export {
public function __construct($data) {
$this->profilerStart = microtime(true);
}
function process() {
}
function timeExecution() {
$profilerEnd = microtime(true);
return ($profilerEnd - $this->profilerStart) / 60;
}
}