2016-10-24 19:01:32 +02:00
|
|
|
<?php
|
|
|
|
|
2016-11-11 19:50:47 -06:00
|
|
|
namespace Mailgun\Deserializer;
|
2016-10-24 19:01:32 +02:00
|
|
|
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do not serialize at all. Just return a PSR-7 response.
|
|
|
|
*
|
|
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
|
|
*/
|
2016-11-11 19:50:47 -06:00
|
|
|
class PSR7Deserializer implements ResponseDeserializer
|
2016-10-24 19:01:32 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param ResponseInterface $response
|
|
|
|
* @param string $class
|
|
|
|
*
|
|
|
|
* @return ResponseInterface
|
|
|
|
*/
|
|
|
|
public function deserialize(ResponseInterface $response, $class)
|
|
|
|
{
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
}
|