19 lines
287 B
PHP
Raw Normal View History

2019-01-27 15:28:25 +01:00
<?php
namespace Infinito\Domain\ActionManagement;
2019-01-27 15:28:25 +01:00
use Infinito\Entity\EntityInterface;
2019-01-27 15:28:25 +01:00
/**
* @author kevinfrantz
*/
2019-01-27 15:28:25 +01:00
interface ActionInterface
{
/**
* Executes the action.
*
* @return EntityInterface|EntityInterface[]|null
*/
public function execute();
}