Implemented draft for ActionManagement

This commit is contained in:
Kevin Frantz
2019-01-27 15:28:25 +01:00
parent f7242f725e
commit 707df1b951
46 changed files with 686 additions and 831 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Domain\ActionManagement;
use App\Entity\EntityInterface;
interface ActionInterface
{
/**
* Executes the action.
*
* @return EntityInterface|EntityInterface[]|null
*/
public function execute();
}