* @since 6.1 */ interface IController { /** * Invokes the controller, passing in any placeholders from the endpoint in * the `$variables` array. * * @param array $variables * @throws MappingError */ public function __invoke(ServerRequestInterface $request, array $variables): ResponseInterface; }