mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
17 lines
303 B
PHP
17 lines
303 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\ActionManagement;
|
|
|
|
/**
|
|
* Offers a function to create an action object by the RequestedActionService.
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ActionFactoryServiceInterface
|
|
{
|
|
/**
|
|
* @return ActionInterface
|
|
*/
|
|
public function create(): ActionInterface;
|
|
}
|