7 lines
95 B
PHP
7 lines
95 B
PHP
<?php
|
|
|
|
interface ActionInterface
|
|
{
|
|
public function __invoke(Request $request): Response;
|
|
}
|