- Bootstraps export

This commit is contained in:
MrCasual
2015-11-09 19:17:28 -05:00
parent bde78b607b
commit 1625e1771b
8 changed files with 89 additions and 3 deletions

16
lib/Export/Export.php Normal file
View File

@@ -0,0 +1,16 @@
<?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;
}
}