mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 02:45:19 +01:00
19 lines
287 B
PHP
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;
|
|
}
|