*/ class NoopHydrator implements Hydrator { /** * @param ResponseInterface $response * @param string $class * * @throws \LogicException */ public function deserialize(ResponseInterface $response, $class) { throw new \LogicException('The NoopHydrator should never be called'); } }