Files
Chamilo/vendor/ddeboer/data-import/src/Workflow.php
2025-08-14 22:41:49 +02:00

21 lines
381 B
PHP

<?php
namespace Ddeboer\DataImport;
/**
* A mediator between a reader and one or more writers and converters
*
* @author Markus Bachmann <markus.bachmann@bachi.biz>
*/
interface Workflow
{
/**
* Process the whole import workflow
*
* @return Result Object Containing Workflow Results
*
* @throws Exception
*/
public function process();
}