mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-11-03 10:47:56 +00:00
Implemented draft for ActionManagement
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user