Remove useless method

This commit is contained in:
huangzhhui 2019-06-18 19:35:15 +08:00
parent 0713606ffb
commit 645cc73caf

View File

@ -29,9 +29,4 @@ class HttpCoreMiddleware extends CoreMiddleware
$this->dataFormatter = $container->get($this->protocolManager->getDataFormatter($protocolName));
$this->packer = $container->get($this->protocolManager->getPacker($protocolName));
}
protected function format($response, ServerRequestInterface $request): string
{
return parent::format($response, $request);
}
}