This commit is contained in:
Dag 2024-08-07 00:21:06 +02:00 committed by GitHub
parent 401cc187b7
commit 6ec9193546
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 12 additions and 18 deletions

View file

@ -2,8 +2,5 @@
interface ActionInterface
{
/**
* @return string|Response
*/
public function execute(Request $request);
public function __invoke(Request $request): Response;
}