infinito/application/symfony/src/Domain/ActionManagement/ActionFactoryServiceInterface.php
2019-02-17 14:33:19 +01:00

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;
}