infinito/application/symfony/src/Domain/ActionManagement/ActionFactoryServiceInterface.php

17 lines
298 B
PHP
Raw Normal View History

2019-01-27 15:28:25 +01:00
<?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;
}