Files
piratepoet/lib/ImportExport/Export/Export.php
MrCasual 0fedd1779f - Moves Import and Export under ImportExport namespace
- Cretes a single BootStrapMenu class for Import and Export
- Updates tests
- Adds 2 new methods to Segments model
2015-11-13 12:25:31 -05:00

16 lines
316 B
PHP

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