16 lines
246 B
PHP
Raw Normal View History

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