mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-16 23:26:04 +02:00
Implemented draft for ActionManagement
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\ActionManagement;
|
||||
|
||||
/**
|
||||
* Offers a function to create an action object by the RequestedActionService.
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface ActionFactoryServiceInterface
|
||||
{
|
||||
/**
|
||||
* @return ActionInterface
|
||||
*/
|
||||
public function create(): ActionInterface;
|
||||
}
|
Reference in New Issue
Block a user