Refactored parts of MVCRoutineService to ProcessService

This commit is contained in:
Kevin Frantz
2019-03-27 23:01:45 +01:00
parent 9a95abbaba
commit 4d9813a93d
3 changed files with 121 additions and 78 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Infinito\Domain\ProcessManagement;
/**
* @author kevinfrantz
*/
interface ProcessServiceInterface
{
public function process(): void;
}