mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-15 03:15:18 +01:00
17 lines
298 B
PHP
17 lines
298 B
PHP
|
<?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;
|
||
|
}
|