app->bind($alias, $psr17Factory); } $this->app->bind('psr7.factory', PsrHttpFactory::class); $this->app->bind(HttpMessageFactoryInterface::class, PsrHttpFactory::class); $this->app->bind('psr7.request', 'request'); $this->app->bind(ServerRequestInterface::class, 'psr7.request'); $this->app->bind('psr7.response', 'response'); $this->app->bind(ResponseInterface::class, 'psr7.response'); } }