2019-02-18 19:19:37 +01:00

19 lines
287 B
PHP

<?php
namespace Infinito\Domain\ActionManagement;
use Infinito\Entity\EntityInterface;
/**
* @author kevinfrantz
*/
interface ActionInterface
{
/**
* Executes the action.
*
* @return EntityInterface|null
*/
public function execute(): ?EntityInterface;
}