mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
16 lines
246 B
PHP
16 lines
246 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\ActionManagement;
|
||
|
|
||
|
use App\Entity\EntityInterface;
|
||
|
|
||
|
interface ActionInterface
|
||
|
{
|
||
|
/**
|
||
|
* Executes the action.
|
||
|
*
|
||
|
* @return EntityInterface|EntityInterface[]|null
|
||
|
*/
|
||
|
public function execute();
|
||
|
}
|