Added workflow draft

This commit is contained in:
Kevin Frantz
2018-09-05 19:52:21 +02:00
parent caa5f9aec4
commit 05e87bdfcc
4 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Controller\workflow;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use App\Entity\NodeInterface;
/**
*
* @author kevinfrantz
*
*/
interface WorkflowInterface
{
public function setWorker(NodeInterface $worker):void;
public function setReguest(Request $request):void;
public function work():void;
public function getReponse():Response;
}