- Bootstraps export
This commit is contained in:
16
lib/Export/Export.php
Normal file
16
lib/Export/Export.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user