2019-02-06 18:34:51 +01:00
|
|
|
<?php
|
2022-07-01 15:10:30 +02:00
|
|
|
|
|
|
|
interface ActionInterface
|
|
|
|
{
|
|
|
|
/**
|
2023-09-25 21:18:48 +02:00
|
|
|
* @return string|Response
|
2022-07-01 15:10:30 +02:00
|
|
|
*/
|
2022-07-08 21:06:14 +02:00
|
|
|
public function execute(array $request);
|
2019-02-06 18:34:51 +01:00
|
|
|
}
|