21 lines
381 B
PHP
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();
|
|
}
|