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