You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.
interfaceEventDispatcherInterfaceextendsResetInterface
{
.../** * Dispatch an event and call the listeners.*/publicfunctiondispatch(EventInterface$event): Awaitable<EventInterface>;
...
}
interfaceRequestHandlerInterface
{
/** * Handle the request and return a response.*/publicfunctionhandle(ServerRequestInterface$request): Awaitable<ResponseInterface>;
}
interfaceMiddlewareInterface
{
/** * Process an incoming server request and return a response, optionally delegating * response creation to a handler.*/publicfunctionprocess(ServerRequestInterface$request, RequestHandlerInterface$handler): Awaitable<ResponseInterface>;
}
The text was updated successfully, but these errors were encountered:
i think it would be best to take advantage of Hack's async in some places here.
These contracts can be async, and probably should :
The text was updated successfully, but these errors were encountered: